加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

AngularJS指令 – 隔离范围和继承范围

发布时间:2020-12-17 06:46:52 所属栏目:安全 来源:网络整理
导读:我一直试图理解指令中孤立范围和继承范围之间的区别.这是我准备让自己明白的一个例子: HTML div ng-controller="AppController" div my-directive Inside isolated scope directive: {{myProperty}} /div div my-inherit-scope-directive Inside inherited
我一直试图理解指令中孤立范围和继承范围之间的区别.这是我准备让自己明白的一个例子:

HTML

<div ng-controller="AppController">
    <div my-directive>
        Inside isolated scope directive: {{myProperty}}
    </div>

    <div my-inherit-scope-directive>
        Inside inherited scope directive: {{myProperty}}
    </div>
</div>

JS

angular.module("myApp",[])
        .directive("myInheritScopeDirective",function() {
            return {
                restrict: "A",scope: true
            };
        })
        .directive("myDirective",scope: {}
            };
        })
        .controller("AppController",["$scope",function($scope) {
            $scope.myProperty = "Understanding inherited and isolated scope";
        }]);

使用Angular-1.1.5执行代码,它按预期工作:由于隔离范围,my-directive中的{{myProperty}}将是未定义的,而对于my-inherit-scope-directive,{{myProperty}}将具有理解继承和隔离范围的价值.

但是在两个指令{{myProperty}}中使用Angular-1.2.1执行输出了解继承和隔离范围.

我错过了什么?

解决方法

指令中的文本节点绑定到控制器范围.因此该指令的范围无效.我认为从v1.2开始它有 changed.您必须为您的指令使用模板:

.directive("myIsolatedDirective",function () {
    return {
        template: 'Inside isolated in template scope directive: {{myProperty}}',restrict: "A",scope: {
            myProperty: '='
        }
    };
})

检查this fiddle.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读