我有一个grails渲染标记,可以呈现一小部分HTML。有时HTMl需要显示一些文本,有时还需要显示一些文本和链接。
这段代码工作正常:
<g:render template='accountInfo' model="[
'accountStatus':subscription.status,
'subscription':subscription.plan.name,
'msg':g.message (code: 'stripe.plan.info', args:'${[periodStatus, endDate]}')]"/>
但是我希望能够为模型中的'msg'变量传递一些HTML,就像输出一些文本和链接一样:
<g:render template='accountInfo' model="[
'accountStatus':profile.profileState,
'subscription':'None selected yet',
'msg':<a href="${createLink(controller: 'charge', action: 'basicPlanList')}" title="Start your Subscription">Your profile is currently inactive, select a plan now to publish your profile.</a>]"/>
该代码不起作用。我已经尝试将链接添加到taglib,但我无法弄清楚如何将taglib传递给'msg':
<g:render template='accountInfo' model="[
'accountStatus':profile.profileState,
'subscription':'None selected yet',
'msg':<abc:showThatLink/>]"/>
我愿意接受有关如何最好地实现文本传递,文本和grails createLink闭包以及链接的一些文本的建议。
答案 0 :(得分:3)
您有多种选择:
1使用引号:
<g:render template='accountInfo' model='${ [msg: "<a href='www.someurl.com'>.. </a>"]}' />
2使用另一个变量:
<g:set var="myMsg>
<a href="www.someurl.com>...</a>
</g:set>`
<g:render template='accountInfo' model='[ 'msg': ${myMsg} ]'/>
3使用<g:render />
的正文内容:
<g:render template="accountInfo" model="[ .. ]">
<a href="..">..</a>
</g:render>
您可以在模板(body()
)内使用accountInfo
方法来渲染正文内容。前段时间我写了一篇small blog post about this,其中提供了更多细节。