我在 API 控制器上有以下内容:
public void UpdateClient(Client client)
{
try
{
if (ModelState.IsValid)
{
db.Entry(client).State = EntityState.Modified;
db.SaveChanges();
}
}
catch
{
throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.NotFound));
}
}
页面上有以下内容:
$.ajax({
url: "api/client/UpdateClient",
type: "PUT",
contentType: 'json',
data: ko.toJSON(model.selectedClient()),
success: function (result) {
getClients();
$("#loader").hide();
},
failure: function (result) {
alert(result.d);
$("#loader").hide();
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert("An error occurred, please try again.");
$("#loader").hide();
}
});
但这给出了错误 405 Method Not Allowed,任何人都可以看到我可能出错的地方吗?作为参考,api 的 url 可以,因为我也将相同的 api 控制器用于其他功能。
selectedClient() 也是通过 WebApi 接收的 Client 对象,因此应该与 PUT 完美匹配。