7
命令驗證錯誤我無法呈現從我的命令對象錯誤。它很好地完成了這項工作,但是我的.gsp視圖不會導致我提出的錯誤。呈現跨越重定向
這裏是我的控制器操作:
def handleModifyProfile2 = { CreditProviderModificationCommand cpmc -> // bind params to the command object
if (cpmc.hasErrors()) {
flash.message = "Error modifying your profile:"
redirect(action: "modifyProfile", params: [creditProvider : cpmc])
} ...
這裏是我嘗試呈現在我.gsp視圖中的錯誤:
<g:hasErrors bean="${creditProvider}">
<div class="errors">
<g:renderErrors bean="${creditProvider}" as="list" />
</div>
</g:hasErrors>
我怎樣才能在要顯示的錯誤視圖?
啊! 您已經結束了3個小時的漫遊。 非常感謝! –
當然,沒問題。 –
謝謝,我發現你的答案也有幫助。順便說一句,我想使用閃光代替會議直接會防止會話污染? –