从Ajax请求角度获取数据 [英] Get data from ajax request to Angular

查看:122
本文介绍了从Ajax请求角度获取数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有2个请求

$.ajax({
    type: "POST",
    url: "http://sandbox.gasvisor.com:9988/uaa/oauth/token",
    data: "grant_type=client_credentials",
    headers: { 'Content-Type': 'application/x-www-form-urlencoded',
    'Authorization':'Basic SVRXRV9XRUJfQVBQOml0d2VfY2xpZW50' },
    success:function(data){
        console.log(data);
        getData(data.access_token);
    }
})

function getData(acess_token){
    $.ajax({
        type: "GET",
        url: "http://sandbox.gasvisor.com/api/v2/gobjects/search/withinRadius?longitude=24.711117&latitude=48.922633&radius=10",
        headers: { 
            'Authorization':'bearer'+acess_token },
            success:function(data){
                console.log(data);
            }
        })    
}

他们从服务器返回JSON。我需要从JSON文件数据,以我的角度上市。请帮助我。

They return json from server. I need to get data from Json file to my Angular listing. Pls help me.

推荐答案

下面是你的电话的一个简单的例子:

Here is a simple example for one of your call:

$http({
  method: 'POST',
  url: 'http://sandbox.gasvisor.com:9988/uaa/oauth/token',
  data: 'grant_type=client_credentials',
  headers: { 'Content-Type': 'application/x-www-form-urlencoded', 'Authorization':'Basic SVRXRV9XRUJfQVBQOml0d2VfY2xpZW50' },
}).then(function successCallback(response) {
    // this callback will be called asynchronously
    // when the response is available
    $scope.response = response;
  }, function errorCallback(err) {
    // called asynchronously if an error occurs
    // or server returns response with an error status.
    $scope.error = err;
});

这篇关于从Ajax请求角度获取数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆