我在django中使用jQuery(ajax),我希望在django服务器发生错误时我会收到服务器错误"the server responded with a status of 500 (INTERNAL SERVER ERROR)"
实际上我想得到django错误消息(例如ajax函数中的“KeyError或model not found and etc.”
$.ajax({
...
success:function(json){
...
},
error:function(xhr,errmsg,err){
// this here i want to show django error)
alert(django error msg);
}
});
感谢。