angularjs使用post请求需要插入的参数

angularjs用get提交时,一般格式可以是这样的:

$http.get(url+data).success(function(res){

console.log("res",res);

});


angularjs用post请求时,格式如下:

var postCfg = {

headers:{'Content-Type':'application/x-www-form-urlencoded;charset=UTF-8'},

transformRequest: function(data){

return $.param(data);

}

};

$http.post(url,{data},postCfg).success(function(res){

console.log("res",res);

});

 
  

你可能感兴趣的:(常用易忘系列)