2017-03-11 13 views
3

これらのAPI呼び出しがあり、角度コントローラでこれらの呼び出しをしたいですか?どのような例も役立ちます。角度コントローラでAPIを呼び出す方法

あなたはちょうどこのよう $http serviceを利用するために必要
app.post('/user/auth', users.auth); 
app.get('/user/logout', helpers.isAuthenticated, users.logout); 
+0

'helpers.isAuthenticated'とAPIを期待している' users.logout'パラメータの名前は何ですか? – lealceldeiro

+0

助けてくれてありがとう、ここですべての詳細を見つけることができます。 – CreativeDip

+0

http://stackoverflow.com/questions/42728872/authenticating-user-from-api-to-angular-js – CreativeDip

答えて

5

angular.module('app', []) 
    .controller('ctrlname', ['$http', function($http){ 

    //post sample 
    $http.post('/user/auth', users.auth).then(function(response){ 
     //handle your response here 
    }); 

    //get sample 
    //substitute 'param1' and 'param2' for the proper name the API is expecting these parameters 
    $http.get('/user/logout/?param1=' + helpers.isAuthenticated + '&param2=' + users.logout).then(function(response){ 
     //handle your response here 
    }); 

    }] 
); 
関連する問題