我有ajax电话:
$.ajax({
type: "POST",
url: "../getFormMetaData/",
cache:false,
data: $data,
success: createZoomDialog,
error:function(response){
}
});
如何从python django发送数据到ajax错误处理程序?
答案 0 :(得分:1)
您可以在视图中使用4xx错误代码返回HttpResponse
:
def view(request):
return HttpResponse("error", status=404)