两种方法对比看,就是一种(哈哈)
$.ajaxSetup({
contentType : 'application/json;charset=utf-8'
});
$.post("/api","{'Username': 'user1', 'Password': 'user1psd'}",function(result){
console.log(result)
},"json")
最后一个参数 json表示接收到的数据是json格式
angular的post data不用转字符串
jquery的post data需转字符串({'Username': 'user1', 'Password': 'user1psd'}外还有双引号,一开始没有就报错了)
content-type的几种取值 参考 http://zccst.iteye.com/blog/2180127