赞
踩
a.ctl.js 广播
$scope.$broadcast('selectTempDays', tempD);
b.ctl.js 接收
$scope.$on('selectTempDays', function(event, tempDays){
//do somthing
});
调试发现$on会调用多次导致处理结果不准确
解决:
定义一个全局可共享变量,这里我放在了关联的Service
this.onFlag = false;
广播之前设置一下
Service.onFlag = false;
$scope.$broadcast('selectTempDays', tempD);
接收
$scope.$on('selectTempDays', function(event, tempDays){
if(!Service.onFlag){
//do somthing
Service.onFlag = true;
}
});
let test = $scope.$on('selectTempDays', function(event, tempDays){
//do somthing
});
$scope.$on('$destroy',function(){
test();
});
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。