grails gsp 文件中的 println

发布于 2024-08-30 13:39:43 字数 185 浏览 3 评论 0原文

我知道这很简单,但我不知道。

我在 gsp 文件中使用 println 并期望在控制台中打印输出。但这显示在页面上。

<% 
for(int i =0; i < threads.size();i++) {
     println i
} 
%>

谢谢。

I know this is simple thing, but i was not aware.

I used println in gsp file and expected to print output in console. But this is showing on page.

<% 
for(int i =0; i < threads.size();i++) {
     println i
} 
%>

thanks.

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

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

发布评论

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

评论(1

别再吹冷风 2024-09-06 13:39:43

您可以使用

<%
   System.out.println i 
%>

但为什么在 GSP 页面中使用片段?

如果您想从 GSP 获得控制台调试输出,我建议使用此插件: https://grails.org/plugin/debug

You can use

<%
   System.out.println i 
%>

But why use sniplets in a GSP page?

If you want console debug output from your GSP i suggest using this plugin: https://grails.org/plugin/debug

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