grails gsp 文件中的 println
我知道这很简单,但我不知道。
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
但为什么在 GSP 页面中使用片段?
如果您想从 GSP 获得控制台调试输出,我建议使用此插件: https://grails.org/plugin/debug
You can use
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