AngularJS scope的一个特性:刷新子scope的时候,也会刷新父scope
发布时间:2020-12-17 10:09:33 所属栏目:安全 来源:网络整理
导读:最近在开发项目的时候,发现了AngularJS一个很好玩的特性。我们知道 AngularJS的scope存在父子关系,当我们通过scope.$apply()手动刷新子作用域的时候,父作用域也会被刷新;反过来也是如此。 !doctype htmlhtml lang="en" ng-apphead meta charset="utf-8"
最近在开发项目的时候,发现了AngularJS一个很好玩的特性。我们知道AngularJS的scope存在父子关系,当我们通过scope.$apply()手动刷新子作用域的时候,父作用域也会被刷新;反过来也是如此。
<!doctype html> <html lang="en" ng-app> <head> <meta charset="utf-8"> <title>ng-model</title> <script src="angular-1.2.25.js"></script> <script> var outerScope = null; var innerScope = null; function outerController($scope) { outerScope = $scope; outerScope.out = "out"; } function innerController($scope) { innerScope = $scope; innerScope.in = "in"; } function outerFunc() { innerScope.in = "parent"; outerScope.out = "parent"; // 刷新父scope outerScope.$apply(); } function innerFunc() { innerScope.in = "child"; outerScope.out = "child"; // 刷新子scope innerScope.$apply(); } </script> </head> <body ng-controller="outerController"> {{out}} <button onclick="outerFunc();">outerFunc</button> <div ng-controller="innerController"> {{in}} <button onclick="innerFunc();">innerFunc</button> </div> </body> </html> (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |