angularjs $http.get 和 $http.post 传递参数

前端之家收集整理的这篇文章主要介绍了angularjs $http.get 和 $http.post 传递参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

$http.get请求数据的格式

  1. $http.get(URL,{
  2. params:{
  3. "id":id
  4. }
  5. })
  6. .success(function(response,status,headers,config){
  7. })

$http.post请求数据的格式

copy
    $http.post(URL,248); line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> "id":id
  1. tips:

    get 和 post方法传递参数的方式不一样

    [java] copy
@H_404_104@ //分享商品list列表
  • .factory("shareGoodsListService",["$http",function($http){
  • return{
  • //得到所有的收货地址
  • updateAddress:function(__scope__,addrid){
  • //获取地址的值
  • varProvince=$("select[name='Province']").val();
  • varCity=$("select[name='City']").val();
  • varArea=$("select[name='Area']").val();
  • varformData={
  • id:addrid,
  • name:__scope__.formData.name,
  • mobile:__scope__.formData.mobile,248); line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> province:Province,108); list-style:decimal-leading-zero outside; color:inherit; line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> city:City,248); line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> area:Area,108); list-style:decimal-leading-zero outside; color:inherit; line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> address:__scope__.formData.address,248); line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> zip:__scope__.formData.zip,108); list-style:decimal-leading-zero outside; color:inherit; line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> submit:"submit"
  • };
  • $http.post("{:U('AddressInfo/editAddress')}",formData).success(function(response,153); background-color:inherit; font-weight:bold">if(response.status==1){
  • alert("修改成功!");
  • }
  • })
  • },248); line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> getAddress:function(){
  • //$http.get方法传递参数使用的是{params:jsonObj}
  • $http.get("{:U('AddressInfo/editAddress')}",{
  • params:{
  • .success(function(response,config){
  • //获取地址的数据
  • __scope__.formData={
  • name:response.data.name,248); line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> mobile:response.data.mobile,108); list-style:decimal-leading-zero outside; color:inherit; line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> address:response.data.address,248); line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> zip:response.data.zip
  • };
  • //默认收货地址的值
  • newPCAS("Province","City","Area",response.data.province,response.data.city,response.data.area);
  • }])
  • 猜你在找的Angularjs相关文章