关于AngularJs中$http post、get 发送和接受参数详解

$http({method: 'post', url: './feedback/mail',

data:{content:content,mailOrqq:mailOrqq,type:'chat-page-feedback'}

}).success(function(data, status, headers, config) {

   console.log("IT部落是个神奇的网站");

}).error(function(data, status, headers, config){

console.error('我错了');

});

$http({method: 'GET',url:'./topic/getTopicCommentList',

           params:{topicId:$stateParams.topicId}

       }).success(function(data, status, headers, config) {})

       .error(function(data, status, headers, config){});

聪明的你一定看出来了,POST最好用Data携带数据、GET最好用params携带数据,两者使得区别如下描述:
params – {Object.<string|Object>} – Map of strings or objects which will be serialized with theparamSerializer and appended as GET parameters.
data – {string|Object} – Data to be sent as the request message data.


xyy_sun
46 声望5 粉丝

热爱web前端开发,有较强的学习能力,喜欢与人沟通交流


引用和评论

0 条评论