码迷,mamicode.com
首页 > Web开发 > 详细

AngularJs 父子级Controller传递数据

时间:2015-12-31 10:25:56      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:

<div ng-controller="MyAccountCtrl">  
  
   <div ng-controller="TransferCtrl">  
           .............  
  
   </div>  
  
</div>  
// 子级传递数据给父级  
// 子级传递  
$scope.checkLoggedIn = function(type) {  
          $scope.transferType = type;  
          $scope.$emit(transfer.type, type);  
}  
  
// 父级接收  
$scope.$on(transfer.type, function(event, data) {  
          $scope.transferType = data;  
        });  
        $scope.checkLoggedIn = function() {  
          var type = $scope.transferType;  
}  
// 父级传递数据给子级  
// 父级传递  
$scope.transferType = ‘‘;  
$scope.checkLoggedIn = function(type) {  
          $scope.transferType = type;  
          $scope.$broadcast(transfer.type, type);  
}  
  
// 子级接收  
$scope.transferType = ‘‘;  
$scope.$on(transfer.type, function(event, data) {  
          $scope.transferType = data;  
        });  
        $scope.checkLoggedIn = function() {  
          var type = $scope.transferType;  
}  

在线实例:http://each.sinaapp.com/angular/apps/app-broadcast.html

AngularJs 父子级Controller传递数据

标签:

原文地址:http://www.cnblogs.com/zhujiabin/p/5090808.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!