Grails 2.5.0 - 仅当模板存在时才在gsp中渲染模板

时间:2015-05-13 20:27:08

标签: grails-2.0 gsp

我正在使用一种布局,其中文件底部包含许多javascript库,就在body标签的上方。我想要做的是在各种页面上添加一些自定义javascript,但不是所有页面。

有一些等价物

<g:render template="customjs"/>

我可以在布局gsp中使用只渲染模板(如果存在)并且在没有_customjs.gsp的页面上不会崩溃吗?

1 个答案:

答案 0 :(得分:0)

答案在这里https://stackoverflow.com/a/3394720/1790092
如果你的控制器名称是&#34; MyJsController&#34;
考虑将此代码包装到TagLib中以便更好地重用

#include <iostream>
#include <cstdio>
using namespace std;

int main() {
    int i;
    long l;
    long long ll;
    char ch;
    float f;
    double d;

    //6 arguments expected
    if(scanf("%d %ld %lld %c %f %lf", &i, &l, &ll, &ch, &f, &d) == 6)
    {
        printf("%d\n", i);
        printf("%ld\n", l);
        printf("%lld\n", ll);
        printf("%c\n", ch);
        printf("%f\n", f);
        printf("%lf\n", d);
    }
    return 0;
}