那回来了吗?假设这是一个动作的中间位置。
render(contentType:'text/json',text: ['success': true] as JSON) return
解决方法
如果您不返回,还将执行渲染后的任何代码,这通常不是您想要的。
def someAction = { if (someCondition) { render view: 'success' // if we don't return execution would fall through to the code below return } log.error 'something went wrong' render view: 'error' }
当然,如果你使用这个风格,那就没有必要返回
def someAction = { if (someCondition) { render view: 'success' } else { log.error 'something went wrong' render view: 'error' } }
def someAction = { render view: 'success' }
只要记住,如果不返回,则执行render后的代码。