我在 Durundal 的 JS 文件中有以下 ajax cal,
var dataJSON ={ID : "jo"};
self.js = $.ajax({
type: "POST",
dataType: text,
url: "http://localhost:53081/api/File",
data: JSON.stringify(dataJSON),
error: function (xhr, status, error) {
alert(error);
},
success: function (json) {
alert("Data Returned: " + JSON.stringify(json));
}
});
我的 REST api 是
[HttpPost]
public string upload(string ID)
{
string givenId = ID;
return givenId;
}
但是当我调用 thsi 方法时,我只是收到错误警报。什么地方出了错
更新
我已经更新了我的代码,但现在我收到 Not found 错误