gpt4 book ai didi

Grails - URL 映射/默认操作和流程

转载 作者:行者123 更新时间:2023-12-04 15:25:37 25 4
gpt4 key购买 nike

题 -

我注意到我测试的一些应用程序从一个 Action 提交调用了另一个 View / Controller ,但是当该页面被呈现时,而不是看到:

$ Controller /$页

我懂了:

$ Controller /索引

这是 URL 映射配置的问题吗?默认操作?只是好奇,因为它似乎只是映射到默认值而不是实际操作的 URI。

查看代码:

<table>
..
<g:actionSubmit class="stats" action="stats" value="View Stats"/>
..
</table

Controller :
def stats() {

def teamId = Team.get(params.id)
def allPlayers = Player.withCriteria {
eq('team', teamId)
and {
eq('isActive', true)
}
}
[allPlayers:allPlayers, teamId:params.id]
}

网址映射:
class UrlMappings {

static mappings = {
"/$controller/$action?/$id?"{
constraints {
// apply constraints here
}
}
}

编辑

我实际上想出了它是什么。这让我更加困惑。

grails actionSubmit 有一个与之相关的操作。那个表格只是一个普通的表格,没有调用:
<g:form>
<g:actionSubmit class="stats" action="stats" value="View Stats"/>
<g:actionSubmit class="schedule" action="schedule" value="View Schedule"/>
<g:form>

因此,默认情况下,表单将操作重定向到 $controller/index。如果在 g:form 标签中添加一个 Action 调用,那两个按钮将指向正确的页面,但 URI 现在将是 $controller/$g:form_action。

如果需要 g:form 作为包装器,我想我不明白 actionSubmit 的操作要点。

最佳答案

是的,index是所有 Controller 的默认操作。因此,如果您不指定一个,那就是您将登陆 Controller 的页面。

在他们的 website 上有更详细的讨论。 .也就是说,规则是:

  • If only one action is present the default URI for a controller maps to that action.
  • If you define an index action which is the action that handles requests when no action is specified in the URI /book
  • Alternatively you can set it explicitly with the defaultAction property:

    static defaultAction = "list"

关于Grails - URL 映射/默认操作和流程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10229927/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com