我這樣GPS:未定義
geocoder.geocode(request, function(data, status) {
if (status = google.maps.GeocoderStatus.OK) {
if (data[0] != null) {
alert("address is: " + data[0].formatted_address);
$scope.$apply(function() {
$scope.addresses = data[0].formatted_address;
//$scope.apply();
})
} else {
alert("No address available");
}
}
})
我越來越範圍變量這種方式返回GPS應用程序的地址不能設置屬性應用程序我得到這個錯誤: 未捕獲TypeError:無法設置屬性'地址'未定義 請問可能是錯的。
是這個代碼的控制器中運行? – Hisham
是的,它是...... – Blaze
嘗試使用Chrome開發人員工具或螢火蟲調試您的程式碼。 – Hisham