我在IdeaProject中有一个beego项目。结构是这样的:
MathApp
├── conf
│ └── app.conf
├── main.go
├── main_test.go
└── views
├── invalid-route.html
└── result.html
但是,它显示错误can't find templatefile in the path:views/result.html
。我已将gopath
设为C:/gopath
。
有什么建议吗?
答案 0 :(得分:1)
您可以在template.go
This issue提及:
请使用
bee run
,go get
将二进制文件安装到gopath/bin
,而静态文件仍在gopath/src/myproject
。