今天刚看到一个网友写的使用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); } });
时间: 2024-12-24 08:54:41