【发布时间】:2015-12-23 15:16:39
【问题描述】:
我的 angularjs 脚本遇到了问题。
背景:我正在尝试确定用户的位置,我已经在我的服务中编写了我的业务逻辑,我从中返回用户的位置。
问题:我在控制台中得到的结果如下:
[未定义]landingPage.js:11 未定义landingPage.js:11 未定义
var app = angular.module("PublicEvents", ["geolocation"]);
app.controller("iterator", ["$scope", "$http", "locationService1", function($scope, $http, locationService1){
$scope.targetCity = [];
$scope.targetCity.push(locationService1.location());
console.log($scope.targetCity);
$scope.$watch(function () { return locationService1.cityNameArray; },
function (value) {
$scope.targetCity = value;
console.log($scope.targerCity);
}
);
}]);
app.service("locationService1",['$http','$window', function( $http, $window){
var access = this;
this.location = function(){
$window.navigator.geolocation.getCurrentPosition(function(position) {
access.lat = position.coords.latitude;
access.long = position.coords.longitude;
access.locationData = [];
access.cityNameArray = [];
/*var url = "http://maps.googleapis.com/maps/api/geocode/json?latlng=18.9750,72.8258&sensor=true";*/
var url = "http://maps.googleapis.com/maps/api/geocode/json?latlng="+access.lat+","+access.long+"&sensor=true";
//AJAX CALL TO GET THE LOCATION
$http.get(url).then(function(response) {
access.locationData = response.data;
if(access.locationData.status == "OK" || access.locationData.status==200 ) {
angular.forEach(access.locationData.results, function(value, key){
var len = value.address_components.length;
for(var i = 0; i< len; i++){
if(value.address_components[i].types[0] =="locality" || value.address_components[i].types[0] =="sublocality_level_1"){
access.cityNameArray.push(value.address_components[i].long_name);
}
}
});
};
});
return access.cityNameArray;
});
};
}]);
【问题讨论】:
-
landingPage.js 中的第 11 行是什么?
-
console.log($scope.targetCity); $watch 里面
-
我认为这可能是这个问题的重复:stackoverflow.com/questions/25575963/…
-
angular 将在您创建它时触发观察器一次,因为服务器没有返回任何内容但您的值未定义。 Pankaj 的回答似乎也不错。 :)
-
让我看看你给的链接....
标签: javascript angularjs angularjs-service angular-promise angularjs-factory