angularjs – Angular js在预期时不更新dom

我有一个小提琴,但基本上它正在做什么地理编码输入到文本框的地址.输入地址并按下“enter”后,dom不会立即更新,而是等待文本框的其他更改.如何在提交后立即更新表格?
我对Angular很新,但我正在学习.我发现它很有趣,但我必须学会以不同的方式思考.

这是小提琴和我的controller.js

http://jsfiddle.net/fPBAD/

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;
    })
  }
}
您的问题是地理编码功能是异步的,因此在AngularJS摘要周期之外更新.你可以通过在$scope.$apply的调用中包装你的回调函数解决这个问题.这允许AngularJS知道运行摘要,因为东西已经改变了:
geo.geocode(
  { address : this.text,region: 'no' 
  },status) {
    $scope.$apply( function () {
      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,"long":longitude}
      });
    });
});

相关文章

AngularJS 是一个JavaScript 框架。它可通过 注:建议把脚本放在 元素的底部。这会提高网页加载速度,因...
angluarjs中页面初始化的时候会出现语法{{}}在页面中问题,也即是页面闪烁问题。出现这个的原因是:由于...
AngularJS 通过被称为指令的新属性来扩展 HTML。AngularJS 指令AngularJS 指令是扩展的 HTML 属性,带有...
AngularJS 使用表达式把数据绑定到 HTML。AngularJS 表达式AngularJS 表达式写在双大括号内:{{ expres...
ng-repeat 指令可以完美的显示表格。在表格中显示数据 {{ x.Name }} {{ x.Country }} 使用 CSS 样式为了...
$http是 AngularJS 中的一个核心服务,用于读取远程服务器的数据。读取 JSON 文件下是存储在web服务器上...