我对此有一个小提琴,但基本上它所做的是对输入到文本框中的地址进行地理编码。输入地址并按下“回车”后,dom 不会立即更新,而是等待文本框的另一次更改。如何在提交后立即更新表格?我对 Angular 很陌生,但我正在学习。我觉得这很有趣,但我必须学会以不同的方式思考。
这是小提琴和我的controller.js
var myApp = angular.module('geo-encode', []);
function FirstAppCtrl($scope, $http) {
$scope.locations = [];
$scope.text = '';
$scope.nextId = 0;
var geo = new google.maps.Geocoder();
$scope.add = function() {
if (this.text) {
geo.geocode(
{ address : this.text,
region: 'no'
}, function(results, status){
var address = results[0].formatted_address;
var latitude = results[0].geometry.location.hb;
var longitude = results[0].geometry.location.ib;
$scope.locations.push({"name":address, id: $scope.nextId++,"coords":{"lat":latitude,"long":longitude}});
});
this.text = '';
}
}
$scope.remove = function(index) {
$scope.locations = $scope.locations.filter(function(location){
return location.id != index;
})
}
}