前言
在学习 go 语言的时候,VsCode 编辑器一直给我报这个错误,虽然不影响我 go 代码的运行,但是看着心烦,于是在网上找了好多篇文章,真™无语,都是互抄,并且解决不了问题。下面,我将记录本人的解决思路。
报错信息
gopls requires a module at the root of your workspace.
You can work with multiple modules by opening each one as a workspace folder.
Improvements to this workflow will be coming soon, and you can learn more here:
https://github.com/golang/tools/blob/master/gopls/doc/workspace.md
翻译:gopls 要求在你的 根工作控件 只能存在 一个模块,
你能够为每一个工作工件创建一个文件夹来实现多模块工作,
这个工作流程很快会得到改进,获取更多信息可以访问
https://github.com/golang/tools/blob/master/gopls/doc/workspace.md
解决方法
就是在src下新建一个文件夹的事:
报错前:
解决后: