我得到了“无法读取属性'推送'”AngularJS,navigator.gelocation

时间:2015-10-09 00:00:10

标签: angularjs geolocation navigator

当我尝试推送到数组并且我有错误“无法读取属性'推送'未定义”。

$scope.projectList = [];              

navigator.geolocation.getCurrentPosition(function($scope,position) {
  $scope.projectList.push(position.coords.latitude);

}, function(error) {
  alert('Unable to get location: ' + error.message);
}, {maximumAge: 0, timeout: 6000, enableHighAccuracy: true })

0 个答案:

没有答案