标签:
今天刚看到一个网友写的使用jquery提交request body的方法,之前真的没有用到过。
$.ajax({ type: "POST", url: "/Service/ListString", contentType: "application/json", dataType: "json", data: JSON.stringify({ "BuIds": ["1", "2", "3"] }), success: function (jsonResult) { alert(jsonResult); } });
标签:
原文地址:http://my.oschina.net/yangyan/blog/515656