有没有明确"text/json"
指定的速记方法?
def remoteError = {
render( status: 500, contentType: "text/json"){
error( exception: "a remote exception occurred")
}
}
我尝试使用as JSON
...没有返回内容,但状态码是正确的...
render( status: 500, exception: params.exception) as JSON