关于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.
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。