在 STS (Eclipse) IDE 的所有 Gsp 文件中包含 .js 文件吗?
有什么方法可以将文件包含在所有 gsp 文件头中吗?我想
<g:javascript src="hotkey.js"/>
在所有 Gsp 文件头部分包含一个文件。我正在使用 STS(SpringSource 工具套件)。
is there any way to include a file in all gsp file header ? i want to include a file
<g:javascript src="hotkey.js"/>
in all Gsp files heade part. i'm using STS (SpringSource Tool Suite).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您将 .js 文件包含在 main.gsp 中,那么它将自动包含在
中的所有 gsp 中><头>。下面的 gsp 头示例:
主布局自动包含在脚手架创建命令生成的所有 gsp 中。
If you include your .js files in main.gsp then it will automatically be included in all gsps with the tag
<meta name="layout" content="main" />
in the<head>
. Example gsp head below:The main layout is automatically included in all gsps generated by the scaffolding create commands.