次の AJAX リクエストを送信しています。
$.ajax({ type: 'POST',
data: $(this).parents('form:first').serialize(), url:'/myapp/comment/saveOrUpdate',
success: function(data,textStatus) {insertNewComment(data)},
error: function(xhr, textStatus, errorThrown) {alert(xhr.responseText);}
})
...そして私のコントローラーアクションは次のようになります:
class CommentController {
...
def saveOrUpdate = {
...
if (error) {
response.sendError 419, 'You must wait at least 5 minutes before posting a new comment'
}
}}
残念ながら、HTTP 応答で送信したメッセージが表示されません。代わりに、Tomcat/Apache (または Grails?) から次のようなエラー HTML ページが生成されました。
<html><head><title>Apache Tomcat/6.0-snapshot - Error report</title>
</head><body><h1>HTTP Status 419 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>Cannot find message associated with key http.419</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/6.0-snapshot</h3></body></html>
JavaScript コードから「お待ちください...」というメッセージを取得するために、生成されたエラー HTML ページをバイパスするにはどうすればよいですか?
ご協力ありがとうございました。