将参数传递给grails映射

时间:2014-01-29 20:23:04

标签: grails

我已命名映射我正在尝试将参数传递给。虽然我在gsp中使用grails标签时使用google搜索/查看了许多关于此问题的回复:

<g:link mapping="accountDetails" params="[acctNumber:'8675309']">

我正在尝试在我的taglib中使用g.link而不是<g:link并获得异常。这是我的标签lib中的一行:

String otherProfileLink = g.link(mapping:"browseProfile", params:"['profileId':'123']", "my link text")

在我的网址中:

 name browseProfile: "/browseProfile/$profileId" {controller = 'search'; action = 'show'}

例外是:

Unable to create URL for mapping [/browseProfile/(*)] and parameters [{controller=message, action=index}]. Parameter [profileId] is required, but was not specified!

我在params值上尝试了一些变体,有和没有引号,有/没有闭包。但到目前为止还没有运气。

1 个答案:

答案 0 :(得分:1)

你试过这个:

g.link(mapping:"browseProfile", params: [profileId:'123']) { "my link text" }