【go】beego 无法找到templatefile

刚入门,我从官方的案例中选了个项目,按文档一步步弄,但是一直提示

can't find templatefile in the path:views/admin/login.tpl

我用的是beego版本是1.10.1

【go】beego 无法找到templatefile

报错如下:
【go】beego 无法找到templatefile

求大神指点.....
我猜测是路由的问题。

找到问题的答案了

https://github.com/astaxie/beego/issues/65

IDE工具默认将二进制编译到一个临时目录,比如Win IDEA编译的时候就是这样:
"C:Program Files (x86)JetBrainsIntelliJ IDEA Community Edition 2016.3.3binrunnerw.exe" C:/Gobingo.exe build -o "C:UsersyouzhengchuanAppDataLocalTempBuild main.go and rungo" C:/Users/youzhengchuan/Documents/myGolangProject/src/myWebProject2/main.go

那么运行的时候,二进制当然找不到相对路径的 index.tpl了,修改下IDE工具的设置,选择编译输出目录为 $GOPATH/src/$UBEEGOPROJECT/ 即可。

不要双击你的二进制文件,进去目录后运行你的二进制文件
./main

你给的信息不足以判断原因,按我的经验排查下:
1.是不是路径确实没写对,TplName应该是user/user.html
2.是不是页面有报错,页面有错也有可能报这个错

beego的控制器默认是输出模版的,如果你没有提供相应的模版就会报这个错。
这里的应该是admin控制器中的login方法没有提供对应的模版。

回答

以上是 【go】beego 无法找到templatefile 的全部内容, 来源链接: utcz.com/a/115188.html

回到顶部