尝试通过Angular控制器使用Google Geocode API进行地理编码时,值未定义

时间:2015-03-09 22:45:48

标签: javascript angularjs cordova ionic-framework google-geocoding-api

所以我使用AngularJS获得了这个Cordova应用程序。我为它构建了几个控制器,到目前为止我没有问题,但现在尝试对我们为客户端构建的API提供地理编码地址,在尝试访问键/值对时,我似乎得到的所有内容都是未定义的。

这里console.log的目的只是为了确保正确解析对象并且我可以访问内容(我在调试时使用实时重载服务器进行测试),实际内容是加载形式的App中的HTML模板。

这个问题已经过了好几天了,我可以把它付诸实践,请帮我一把!#/ p>

.controller('StayDetailCtrl', function($scope, $http, $stateParams) {
stayId = $stateParams.stayId
$scope.geodata = [];

$http.get('http://api.vllapp.com/staydetail/' + stayId)
    .then(function(result) {
        $scope.staydetails = result.data;

$http.get('https://maps.googleapis.com/maps/api/geocode/json?address=' + $scope.staydetails.address + '&key=AIzaSyBZVOSPh0Z4mv9jljJWzZNSug6upuec7Sg')
    .then(console.log($scope.staydetails.address))
        .then(function(result) {
            $scope.geodata = result.data;
    })
    .then(console.log($scope.geodata.geometry.location.lat))
});

注意:这个位加载到另一个工作正常的控制器上,这是模板获取所有其他数据来构建自己。

$scope.staydetails = [];

提前致谢!

编辑了一段代码使其同步,无济于事:/

1 个答案:

答案 0 :(得分:3)

不确定我是否理解这个问题,但我认为您可能会发现以下代码有用。

http://codepen.io/aaronksaunders/pen/ogajKX?editors=101

.controller('MainCtrl', function($scope,$http) {
  var address ="1334 Emerson St, NE Washington DC";

  $scope.geodata = {};
  $scope.queryResults = {};
  $scope.queryError = {};

  $http.get('https://maps.googleapis.com/maps/api/geocode/json?address=' + 
            address + '&key=AIzaSyBZVOSPh0Z4mv9jljJWzZNSug6upuec7Sg')
    .then(function(_results){
       console.log(_results.data);
       $scope.queryResults = _results.data.results;
       $scope.geodata = $scope.queryResults[0].geometry
     }, 
     function error(_error){
        $scope.queryError = _error;
     })
});