我可以使用$ .post()获取返回json字符串解析,但不能获得$ .ajax()。
{"result": "success", "id": "1"}
答案 0 :(得分:8)
帖子的实际代码是:
post: function( url, data, callback, type ) {
// shift arguments if data argument was omited
if ( jQuery.isFunction( data ) ) {
type = type || callback;
callback = data;
data = {};
}
return jQuery.ajax({
type: "POST",
url: url,
data: data,
success: callback,
dataType: type
});
},
正如文档所说,它只是$ .ajax
的简写