using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Http; using System.Web.Mvc; namespace MvcApplication1.Controllers { public class UserController : ApiController { public string Post() { return "sdfasd"; } public string Put() { return "0"; } } }
js:
$(function () {
$.ajax({
url: 'api/user',
type: 'post',
dataType: 'json',
success: function (d) {
console.log(d);
}
})
})
为什么 js里面的type改成put就不能调用成功??
我很怀疑,难道psot能console?
你试下就知道 了 post是可以的