gpt4 book ai didi

grails - 在Grails Controller 中将URL的某些部分用作参数

转载 作者:行者123 更新时间:2023-12-02 14:23:02 27 4
gpt4 key购买 nike

我已经在Grails中创建了一个静态URL:

class UrlMappings {
static mappings = {
...

"/remittance/bank"{
controller={"BankRemittance"}
action=[GET:"index"]
}
"/remittance/bank/$bankId/spd/$spdId"{
controller={"SPD"}
action=[GET:"show"]
}

...
}
}

现在我想要的是在我的 bankId上检索URL的 spdIdSPDController值:
class SPDController {
def myService

def show() {
String bankId = ? // code to get bankId from the URL
String spdId = ? // code to get spdId from the URL

render(
view: "...",
model: myService.transact(bankId, spdId)
)
}
}

但是我该怎么做呢?似乎在这种情况下不使用 params.bankIdparams.spdId

最佳答案

您的操作应接受URL参数作为参数。

def show(String bankId...)

关于grails - 在Grails Controller 中将URL的某些部分用作参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34942944/

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