在 STS (Eclipse) IDE 的所有 Gsp 文件中包含 .js 文件吗?

发布于 2024-11-16 21:30:22 字数 158 浏览 2 评论 0原文

有什么方法可以将文件包含在所有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

征棹 2024-11-23 21:30:22

如果您将 .js 文件包含在 main.gsp 中,那么它将自动包含在 中的所有 gsp 中><头>。下面的 gsp 头示例:

   <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta name="layout" content="main" />
    <g:set var="entityName" value="${message(code: 'transactionRecord.label', default: 'TransactionRecord')}" />
    <title><g:message code="default.create.label" args="[entityName]" /></title>
</head>

主布局自动包含在脚手架创建命令生成的所有 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:

   <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta name="layout" content="main" />
    <g:set var="entityName" value="${message(code: 'transactionRecord.label', default: 'TransactionRecord')}" />
    <title><g:message code="default.create.label" args="[entityName]" /></title>
</head>

The main layout is automatically included in all gsps generated by the scaffolding create commands.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文