web-dev-qa-db-ja.com

AngularJSが$ http.getリクエストにデータを渡す

Http POSTリクエストをする機能があります。コードを以下に指定します。これはうまくいきます。

 $http({
   url: user.update_path, 
   method: "POST",
   data: {user_id: user.id, draft: true}
 });

私はhttp GETのための別の機能を持っています、そして私はその要求にデータを送りたいです。しかし、私はgetにその選択肢はありません。

 $http({
   url: user.details_path, 
   method: "GET",
   data: {user_id: user.id}
 });

http.getの構文は次のとおりです。

get(url、config)

561
Sabarish Sankar

HTTP GETリクエストには、サーバーに送信されるデータを含めることはできません。ただし、リクエストにクエリ文字列を追加することはできます。

angular.httpはparamsと呼ばれるそれのためのオプションを提供します。

$http({
    url: user.details_path, 
    method: "GET",
    params: {user_id: user.id}
 });

http://docs.angularjs.org/api/ng.$http#get および https://docs.angularjs.org/api/ng/service/$http#usage (を参照してください。 paramsパラメータを示します

925
fredrik

あなたは can $http.get()に直接paramsを渡すことができます。

$http.get(user.details_path, {
    params: { user_id: user.id }
});
511
Rob

AngularJS v1.4.8 から、次のように get(url, config) を使用できます。

var data = {
 user_id:user.id
};

var config = {
 params: data,
 headers : {'Accept' : 'application/json'}
};

$http.get(user.details_path, config).then(function(response) {
   // process response here..
 }, function(response) {
});
40
Arpit

GETリクエストでパラメータとヘッダを送信することに興味がある人のためのソリューション

$http.get('https://www.your-website.com/api/users.json', {
        params:  {page: 1, limit: 100, sort: 'name', direction: 'desc'},
        headers: {'Authorization': 'Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ=='}
    }
)
.then(function(response) {
    // Request completed successfully
}, function(x) {
    // Request error
});

完全なサービス例は次のようになります

var mainApp = angular.module("mainApp", []);

mainApp.service('UserService', function($http, $q){

   this.getUsers = function(page = 1, limit = 100, sort = 'id', direction = 'desc') {

        var dfrd = $q.defer();
        $http.get('https://www.your-website.com/api/users.json', 
            {
                params:{page: page, limit: limit, sort: sort, direction: direction},
                headers: {Authorization: 'Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ=='}
            }
        )
        .then(function(response) {
            if ( response.data.success == true ) { 

            } else {

            }
        }, function(x) {

            dfrd.reject(true);
        });
        return dfrd.promise;
   }

});
33
Subodh Ghulaxe

URLの末尾にパラメータを追加することもできます。

$http.get('path/to/script.php?param=hello').success(function(data) {
    alert(data);
});

Script.phpとペアになる:

<? var_dump($_GET); ?>

次のようなJavaScriptアラートが表示されます。

array(1) {  
    ["param"]=>  
    string(4) "hello"
}
3

これは、ASP.NET MVCでangular.jsを使用したパラメータを使用したHTTP GETリクエストの完全な例です。

コントローラー:

public class AngularController : Controller
{
    public JsonResult GetFullName(string name, string surname)
    {
        System.Diagnostics.Debugger.Break();
        return Json(new { fullName = String.Format("{0} {1}",name,surname) }, JsonRequestBehavior.AllowGet);
    }
}

VIEW:

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
<script type="text/javascript">
    var myApp = angular.module("app", []);

    myApp.controller('controller', function ($scope, $http) {

        $scope.GetFullName = function (employee) {

            //The url is as follows - ControllerName/ActionName?name=nameValue&surname=surnameValue

            $http.get("/Angular/GetFullName?name=" + $scope.name + "&surname=" + $scope.surname).
            success(function (data, status, headers, config) {
                alert('Your full name is - ' + data.fullName);
            }).
            error(function (data, status, headers, config) {
                alert("An error occurred during the AJAX request");
            });

        }
    });

</script>

<div ng-app="app" ng-controller="controller">

    <input type="text" ng-model="name" />
    <input type="text" ng-model="surname" />
    <input type="button" ng-click="GetFullName()" value="Get Full Name" />
</div>
2
Denys Wessels

パラメータを指定してgetリクエストを送信する

  $http.get('urlPartOne\\'+parameter+'\\urlPartTwo')

これによってあなたはあなた自身のURL文字列を使うことができます

1
moin khan