Grails 视图无法与 .GSP 一起使用
我有一个具有生成列表功能的客户控制器。如果我使用脚手架视图,一切都会很好,但是一旦我尝试访问生成的视图上的列表函数,我就不会收到传递到页面的数据。例如,如果我输入 http://localhost/myproject/customer/list 我会得到一个客户列表在数据库中,但是如果我输入 http://localhost/myproject/customer/list.gsp 我没有得到任何数据。
我绞尽脑汁,试图在文档中找到答案,但没有成功。
谢谢
I have a customer controller with the generated list function. All works well if I use the scaffolded views, but once I try and access the list function on a generated view, I get no data passed to the page. If I for example type in http://localhost/myproject/customer/list I get a list of customers in the database, however if I type
http://localhost/myproject/customer/list.gsp I don't get any data.
I have been racking my brain and trying to find an answer in the documents, but no luck.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅文档中的url 映射。只需将 list 更改为 list.gsp
例如:
更改为:
See url mapping in the docs. just change list to list.gsp
e.g.:
to: