Grails 视图无法与 .GSP 一起使用

发布于 2024-10-24 05:08:49 字数 397 浏览 1 评论 0原文

我有一个具有生成列表功能的客户控制器。如果我使用脚手架视图,一切都会很好,但是一旦我尝试访问生成的视图上的列表函数,我就不会收到传递到页面的数据。例如,如果我输入 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 技术交流群。

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

发布评论

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

评论(1

孤寂小茶 2024-10-31 05:08:49

请参阅文档中的url 映射。只需将 list 更改为 list.gsp

例如:

"/product" {
controller = "product"
action = "list"
}

更改为:

"/product.gsp" {
controller = "product"
action = "list"
}

See url mapping in the docs. just change list to list.gsp

e.g.:

"/product" {
controller = "product"
action = "list"
}

to:

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