我正在尝试处理 Ajax 中的错误。为此,我只是想在 Symfony中重现这个SO 问题。
$.ajaxSetup({
error: function(xhr){
alert('Request Status: ' + xhr.status + ' Status Text: ' + xhr.statusText + ' ' + xhr.responseText);
}
});
但我无法弄清楚控制器中的代码在 Symfony2 中会是什么样子才能触发header('HTTP/1.0 419 Custom Error');
。是否可以附上个人信息,例如You are not allowed to delete this post
. 我是否也需要发送 JSON 响应?
如果有人对此很熟悉,我将非常感谢您的帮助。
非常感谢