VSCode ("cannot find package [...] in any of [...]") 中的 Go 模块导入问题

Go Modules importing issue in VSCode ("cannot find package [...] in any of [...]")

我遇到了似乎是 Gopls 语言服务器的问题:在 VSCode 中使用带有 Go 扩展的 Go 模块时,我所有的外部包导入语句都被标记为不正确。这正是我到目前为止所做的:

在我的 GOPATH/src/github.com/Kozie1337/projectname 里面:

里面 go.main:

package main

import (
    "log"
    "net/http"

    "github.com/gorilla/mux"  // This is being marked as wrong with the err. msg. down below
)

func main() {
  r := mux.NewRouter() // This actually works, even though the go linter says that mux isn't imported
  http.ListenAndServe(":9000", r)) // server starts too with mux routes
}

[...]

将鼠标悬停在 github.com/gorilla/mux 导入语句上时,出现错误:

could not import github.com/gorilla/mux (cannot find package "github.com/gorilla/mux" in any of 
    C:\Program Files\Go\src\github.com\gorilla\mux (from $GOROOT)
    C\src\github.com\gorilla\mux (from $GOPATH)
    \Users\max\go\src\github.com\gorilla\mux (from $GOPATH))"

看起来它正在按照从 go\src 导入没有 Go 模块的方式查找包,即使它们现在存储在 go\pkg\mod 中。 VSCode/Gopls 是否有关于此的一些配置文件,或者我做错了什么?我以前从未使用过 Go/Go 模块。

尽管存在 linting 错误,导入和代码实际上仍然有效,但错误会禁用所有自动完成功能,因此忽略它不是一个可行的解决方案。

我重新安装了 VSCode 的 Go 扩展并尝试重新启动语言服务器,但这并没有改变任何东西。该错误消息出现在每个目录中的所有外部包导入语句中。

我很乐意提供一些建议。

官方的 go modules blog post 特别指出“某处 outside $GOPATH/src,”.

所以在 GOPATH 之外初始化你的模块。