Angularjs等到

前端之家收集整理的这篇文章主要介绍了Angularjs等到前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有:

$scope.bounds = {}

后来在我的代码中:

$scope.$on('leafletDirectiveMap.load',function(){
    console.log('runs');
    Dajaxice.async.hello($scope.populate,{
                'west' : $scope.bounds.southWest.lng,'east': $scope.bounds.northEast.lng,'north' : $scope.bounds.northEast.lat,'south': $scope.bounds.southWest.lat,});
});

你可以在乞讨时看到它们是空的但是它们稍后(几毫秒)用javascript库(leaflet angular)加载.但是$scope.$on(…)在设置边界之前运行,因此’west’:$scope.bounds.southWest.lng,返回一个带有未定义变量的错误.

我想要做的是等待边界(southWest和northEast)设置,然后运行Dajaxice.async.hello(…).

所以我需要“等到边界设置”之类的东西.

解决方法

您可以将$watch用于此目的,如下所示:

$scope.$on('leafletDirectiveMap.load',function(){

       $scope.$watch( "bounds",function(n,o){  

           if(n==o) return;

           Dajaxice.async.hello($scope.populate,{
               'west' : $scope.bounds.southWest.lng,});

       },true);
 });

猜你在找的Angularjs相关文章