我是 Play 框架初学者!开始播放版本 1.2.5。
我在这里关注入门指南
当我看到helloworld/app/views/Application/index
文件时,我看到了标签
#{welcome /}
生成欢迎屏幕内容。
现在我需要更改该标签的内容..
我需要在哪里编辑标签内容。?请帮我!
我是 Play 框架初学者!开始播放版本 1.2.5。
我在这里关注入门指南
当我看到helloworld/app/views/Application/index
文件时,我看到了标签
#{welcome /}
生成欢迎屏幕内容。
现在我需要更改该标签的内容..
我需要在哪里编辑标签内容。?请帮我!
您无需更改标签的内容。自动生成欢迎消息只是一件方便的事情。您可以将其删除并替换为:
<h2>See, I changed the tag!</h2>
这是整个 index.html,已修改:
#{extends 'main.html' /}
#{set title:'Home' /}
<h2>See, I changed the tag!</h2>
Play 框架中的标签通常在
app/views/tags
文件夹。必须调用这个welcome.html
。
如果项目中没有welcome.html,或许可以尝试在play框架安装的文件夹中找到welcome.html。
路径可能像 xxxxx\play-1.3.3\framework\templates\tags。