我创建了一个简短的示例POST
var p = {Name: obj.Name, Age: obj.Age},
str = JSON.stringify(p);
$.post("test.php", str, function (data) {
alert("Post finished");
}).success(function () {
alert("second success");
}).error(function() {
alert("error");
});
404 not found
当我运行上面的代码时,它会抛出from的错误消息test.php
。
test.php
我在我的项目中创建了这个文件。
为什么我会收到此错误?