我正在尝试创建一个 ajax 函数,当调用它时将信息返回到新创建的模式,你能帮我找出问题所在吗?,每当我尝试访问有问题的 URL 时,我都会收到错误“未找到”,如下我添加了我的终端和所有相关文件的屏幕截图。
视图.py
@require_POST()
def form_create(request, model):
if request.method == "POST":
return HttpResponse("the model requested is")
网址.py
url(r'^forms/(?P<model>[\W-]+)/$','.views.form_create'),
html模板中的Ajax调用
$.ajax({
url: "/forms/"+model+"/",
type: "POST",
cache: false,
success:
function(result){
$("#myModalLabel").html(result);
$("#companyModal").modal("show");
},
error:
function(xhr){
alert("Error: " + xhr.statusText);
return false;
}
});