欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2022-04-15 18:37:21
...
$http.get(URL,{  
    params: {  
        "id":id  
    }  
})  
.success(function(response, status, headers, config){  
      
})  
$http.post(URL,{  
    "id":id  
})  
.success(function(response, status, headers, config){  
  
})  
$http({
            method: "POST",
            url: "xxxxxx",
            data: {
                "orderNo": "xxx"
            },
            headers: { 'Content-Type': 'application/json' },
        }).success(function (response) {
            console.log(response);
        });