正在播放的模板中 renderArgs 为空!框架

发布于 2024-12-09 03:14:29 字数 401 浏览 0 评论 0原文

我有一个像这样的控制器函数

public static void renderCustomersList() {
        System.out.println("renderArgs"+renderArgs.toString());
        render(renderArgs);
    }

在我的常规模板

renderArgs ${renderArgs.toString()}

中,我有 renderArgs ,其值打印在控制台中,但是当我传递给模板时,其打印为空。我希望在 main.html 中包含这些值。我在 renderCustomersList.html 和 main.html 中打印了 renderArgs,两个模板上的值均为 null。可能是什么错误。

I have a controller function like this

public static void renderCustomersList() {
        System.out.println("renderArgs"+renderArgs.toString());
        render(renderArgs);
    }

In my groovy template

renderArgs ${renderArgs.toString()}

I have renderArgs with value printed in my console but when i pass to the template its printing as null. I wanted those values in my main.html. I printed renderArgs in Both my renderCustomersList.html and main.html the values were null on both templates. What could be the error.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

初与友歌 2024-12-16 03:14:29

您不需要将 renderArgs 作为参数传递给 render 函数 - renderArgs 范围内的所有变量都将在模板中可用。但不要访问模板中的 renderArgs 对象本身,而是访问独立值 - 见下文。

控制器:

public static void renderCustomersList() {
    ... // some code to initialize yourVariable
    renderArgs.put("yourVariable", yourVariable);
    render(); // renderArgs not needed as a parameter
}

在模板中:

${yourVariable}

You do not need to pass renderArgs as a parameter to the render function - all the variables in the renderArgs scope will be available in the template anyway. But instead of accessing the renderArgs object itself in the template, go for the independent values instead - see below.

Controller:

public static void renderCustomersList() {
    ... // some code to initialize yourVariable
    renderArgs.put("yourVariable", yourVariable);
    render(); // renderArgs not needed as a parameter
}

And in the template:

${yourVariable}
甜警司 2024-12-16 03:14:29

另请注意,如果您不愿意,则不必使用 renderArgs。您还可以将一些参数传递给 render(),如下所示:

public static void renderCustomersList() {
    ...
    render(customers, products, foobar); 
}

然后您可以使用变量名称获取模板中的这些参数:

#{list items:customers, as:cust}
...
Foobar: ${foobar}

需要的唯一情况如果您想在模板中与控制器中使用不同的名称,则可以使用 renderArgs 。但这可能会令人困惑,所以我尽量不这样做。

Note also that you don't have to user renderArgs if you don't want to. You can also pass some parameters to render() like this:

public static void renderCustomersList() {
    ...
    render(customers, products, foobar); 
}

and then you can get at those parameters in your template with the variable names:

#{list items:customers, as:cust}
...
Foobar: ${foobar}

The only case in which you need to use renderArgs is if you want to use different names for your parameters in the template than in the controller. This is potentially confusing though, so I try not to do it.

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