正在播放的模板中 renderArgs 为空!框架
我有一个像这样的控制器函数
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不需要将
renderArgs
作为参数传递给render
函数 -renderArgs
范围内的所有变量都将在模板中可用。但不要访问模板中的 renderArgs 对象本身,而是访问独立值 - 见下文。控制器:
在模板中:
You do not need to pass
renderArgs
as a parameter to therender
function - all the variables in therenderArgs
scope will be available in the template anyway. But instead of accessing therenderArgs
object itself in the template, go for the independent values instead - see below.Controller:
And in the template:
另请注意,如果您不愿意,则不必使用
renderArgs
。您还可以将一些参数传递给render()
,如下所示:然后您可以使用变量名称获取模板中的这些参数:
您需要的唯一情况如果您想在模板中与控制器中使用不同的名称,则可以使用 renderArgs 。但这可能会令人困惑,所以我尽量不这样做。
Note also that you don't have to user
renderArgs
if you don't want to. You can also pass some parameters torender()
like this:and then you can get at those parameters in your template with the variable names:
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.