在我的项目中,我想调用php文件。但它显示错误“405方法不允许”。 请帮帮我!!!
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "/index.php",
data: "{}",
dataType: "json",
success: function (data) {
alert("success");
},
error: function (result) {
alert("Error");
}
});
答案 0 :(得分:0)
尝试使用GET方法而不是POST。