$.get ("/asd", {
asd: "foo"
}, function (res){
alert ("ok");
});
这将发送查询字符串中的参数:
/asd?asd=foo
但我只需要使用 http 正文发送 json 对象:
{ "asd": "foo" }
$.get ("/asd", {
asd: "foo"
}, function (res){
alert ("ok");
});
这将发送查询字符串中的参数:
/asd?asd=foo
但我只需要使用 http 正文发送 json 对象:
{ "asd": "foo" }