golang not enough arguments in call to uuid.Must
错误信息D:\go_workspace\pkg\mod\github.com\goadesign\goa@v1.4.0\uuid\uuid.go:18:23: not enough arguments in call to uuid.Musthave (uuid.UUID)want (uuid.UUID, error)情况使用了goadesign微服务框架, 然后使用go mod 包管理...
错误信息
D:\go_workspace\pkg\mod\github.com\goadesign\goa@v1.4.0\uuid\uuid.go:18:23: not enough arguments in call to uuid.Must
have (uuid.UUID)
want (uuid.UUID, error)
情况
使用了goadesign微服务框架, 然后使用go mod 包管理,报了以上错误
原因,goadesign,里面的uuid引用了 https://github.com/satori/go.uuid
然而作者提交了个更新,方法参数有变化,导致调用不了。
https://github.com/satori/go.uuid/issues/66 这里面很多人讨论.可以看下。
解决方法
1、首先下载github.com/gofrs/uuid,这个是其他人还原版本的
https://github.com/gofrs/uuid
go get github.com/gofrs/uuid
2、找到goadesign本地源码(应该说,打包会引用到的那个路径 gopath or vendor or mod/cache) 此处结合是否使用了go mod.
GO111MODULE=off
无模块支持,go 会从 GOPATH 和 vendor 文件夹寻找包。
GO111MODULE=on
模块支持,go 会忽略 GOPATH 和 vendor 文件夹,只根据 go.mod下载依赖。
GO111MODULE=auto
在 $GOPATH/src外面且根目录有 go.mod文件时,开启模块支持。
在使用模块的时候, GOPATH是无意义的,不过它还是会把下载的依赖储存在 $GOPATH/src/mod中,
也会把 go install的结果放在 $GOPATH/bin中
摘自 https://www.colabug.com/3827784.html
如D:\go_workspace_test\goa.demo.calculator\vendor\github.com\goadesign\goa\uuid\uuid.go
修改导包
import uuid "github.com/gofrs/uuid"
//import uuid "github.com/satori/go.uuid"
这样就ok了。
更多推荐
所有评论(0)