goland执行main函数,main函数调用了同目录文件下的test.go文件中的test函数,报错:go: go.mod file not found in current directory or any parent directory; see 'go help modules'
文件目录结构如图:
02test.go文件中代码如下图:
第4步 执行后报错:go: go.mod file not found in current directory or any parent directory; see 'go help modules'
解决方法:
设置 -> Go -> Go模块 -> 请用Go模块集成(取消勾选)
然后在GOPATH中添加项目GOPATH(这种方法也试用于系统执行外部项目,目录与系统环境变量配置的项目目录GOPATH不一致的情况)
再次执行,执行成功。