Go语言Beego框架:already exists and is not an object file报错

Go语言Beego框架:already exists and is not an object file


如果你在使用Beego来进行构建服务组件,那么在开发过程中如果碰到package 文件夹名却标记了红线,错误提示为...already exists and is not an object file的话。

那么,这个问题是来源于报错提示中的路径,去检查一下吧。

package models
// 报错,红线
// 报错提示 C:\Users\admin\go\pkg\windows_amd64\test\models.a already exists and is not an object file


import (
	...
)
在这里面,看到我有个models.a文件,但它并不在我的项目文件中的models文件夹下。你的代码是没有问题的,只是需要将C:\Users\admin\go\pkg\windows_amd64\test\models.a删除。

然后bee run -gendoc=true -downdoc=true来重新运行起来。(如果不是BeegoAPI,请使用bee run


// 提示一下,关于go的.a文件
// 它们是已编译的程序包,这些文件包含已编译的程序包二进制代码以及调试符号和源信息。

你可能感兴趣的:(Golang,Beego,Golang和Beego)