jQuery中的django错误(获取并显示错误)

时间:2016-01-26 07:28:59

标签: jquery django

我在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);
}
});

感谢。

0 个答案:

没有答案