概述
错误信息
D:go_workspacepkgmodgithub.comgoadesigngoa@v1.4.0uuiduuid.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_testgoa.demo.calculatorvendorgithub.comgoadesigngoauuiduuid.go
修改导包
import uuid "github.com/gofrs/uuid"
//import uuid "github.com/satori/go.uuid"
这样就ok了。
最后
以上就是烂漫摩托为你收集整理的golang not enough arguments in call to uuid.Must的全部内容,希望文章能够帮你解决golang not enough arguments in call to uuid.Must所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复