1. 程式人生 > >angularJS請求引數 ajax

angularJS請求引數 ajax

1. 使用angular服務請求

app.controller('main', function($scope, $http) {
    $scope.fun1 = function () {
        $http({
            method:'POST',
            url:'/user/addUser',
            {#params:{name:'admin',age:21},#}
            data:{name:'admin',age:22},
            dataType:'json',
            headers: { 
'Content-Type': 'application/x-www-form-urlencoded;charset=utf-8' } }).then(function (response) { console.log(response.data) }, function (response) { // 請求失敗執行程式碼 }); } });

 

 

 

 

end