标签: grails tags hyperlink href
虽然Grails有几个标签来生成资源链接或锚标签,但是普通的href呢?假设我正在自己编写一些AJAX函数,我想说点像
$.post("<g:href controller='mycontroller' action='update' />');
答案 0 :(得分:5)
我认为createLink正是您所寻找的:
<a href="${createLink(controller:'mycontroller', action:'update')}" />