在页面创建时将值插入grails创建链接参数

时间:2013-09-13 11:43:33

标签: grails params

我有一个列表视图,对于每一行,我想要链接到另一个显示相关结果的列表视图。我最终设法构建的createlink行看起来像这样

<a href="${createLink(controller : 'RunResults', action:'ListSpecific', params:'[id:testExecQueueInstance.id]')}">my link</a>

这会生成链接

http://localhost:3278/FARTFramework/runResults/listSpecific/testExecQueueInstance.id

我知道testExecQueueInstance.id是22,我希望链接实际上看起来像这样

http://localhost:3278/FARTFramework/runResults/listSpecific/22

我错过了什么?

我的想法是,我有一个像这样的控制器,然后应该列出那些匹配该ID的项目......

def ListSpecific(int id){

    render(view: "list", model: [runResultsInstanceList: RunResults.findAllByTestExeQueueID(id, [sort:"testExecTime", order: "desc"]), runResultsInstanceTotal: RunResults.count()])
}

1 个答案:

答案 0 :(得分:17)

你在params地图上使用了撇号。 你应该试试这个。

<a href="${createLink(controller : 'RunResults', action:'ListSpecific', params: [id:testExecQueueInstance.id])}">my link</a>

享受。