Grails 2.x-包括所有GSP文件中的Javascript / Jquery库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Grails 2.x-包括所有GSP文件中的Javascript / Jquery库相关的知识,希望对你有一定的参考价值。

我曾在Grails 1.3.7中使用过,我在main.gsp中包含了所有的javascript和jquery库,因此这些库将自动包含在所有其他GSP页面中。但是Grails 2.x版本的表现并不像那样。

所以在grails 2.0+中,哪里包含我的javascript / jquery库,以便它自动包含在所有GSP页面中?

答案

只需将它包含在main.gsp目录下的views/layouts文件中(或者您放置的任何其他布局文件,用于样式等,以及您的网站)。当你打电话给他们时,包含这个布局的每个页面都会自动包含库,样式表等。

main.gsp(默认):

<!DOCTYPE html>
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]>    <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]>    <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]>    <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"><!--<![endif]-->
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <title><g:layoutTitle default="Grails"/></title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="shortcut icon" href="$resource(dir: 'images', file: 'favicon.ico')" type="image/x-icon">
    <link rel="apple-touch-icon" href="$resource(dir: 'images', file: 'apple-touch-icon.png')">
    <link rel="apple-touch-icon" sizes="114x114" href="$resource(dir: 'images', file: 'apple-touch-icon-retina.png')">
    <link rel="stylesheet" href="$resource(dir: 'css', file: 'main.css')" type="text/css">
    <link rel="stylesheet" href="$resource(dir: 'css', file: 'mobile.css')" type="text/css">
    <g:layoutHead/>
    <r:layoutResources />
</head>
<body>
    <div id="grailsLogo" role="banner"><a href="http://grails.org"><img src="$resource(dir: 'images', file: 'grails_logo.png')" alt="Grails"/></a></div>
    <g:layoutBody/>
    <div class="footer" role="contentinfo"></div>
    <div id="spinner" class="spinner" style="display:none;"><g:message code="spinner.alt" default="Loading&hellip;"/></div>
    <g:javascript library="application"/>
    <r:layoutResources />
</body>

以上是关于Grails 2.x-包括所有GSP文件中的Javascript / Jquery库的主要内容,如果未能解决你的问题,请参考以下文章

Grails 2.x提交带有其他参数的表单

Grails:如何消除 create.gsp 和 save.gsp 并将其移动到 list.gsp 中列表的第一行?

Grails 不会将变量传递给嵌套模板

Grails 中 GSP 中的 if 语句

带有 Spring Security Core 的 Grails 仅允许所有者在 GSP 中更新

从 grails 中的 gsp 页面进行 ajax 调用