84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
微信开发
基于RESTful API的方式,在进行PUT DELETE请求时发现浏览器不支持这两个请求,于是在safari上测试,在Android自带的系统浏览器上面测试,和winPhone上测试发现均不支持这两个请求方式,请问在移动网页开发的时候如何处理基于RESTful API的PUT DELETE请求?
$.ajax({ url: "http://localhost:10320/api/Person/4", type: "POST", data: JSON.stringify(whatever), headers: { "Content-Type": "application/json", "X-HTTP-Method-Override": "PUT" }, //PUT,DELETE })