Grails-如何验证gsp中params的值?

时间:2015-05-31 09:16:59

标签: javascript grails

我必须验证从控制器发送的参数的值。 我怎样才能在gsp中使用?

1 个答案:

答案 0 :(得分:0)

假设您的网址是

http://testdomain.com/show?id=12&type=test

您可以使用以下代码

访问gsp中的params值
${params.id} 
${params.type}

这会给你 12 & gsp页面中的测试