AngularJS指令转换scope = false?

时间:2012-09-27 19:59:29

标签: javascript html binding angularjs

如何使用transclude来防止指令创建新范围?

这个jsfiddle我不能绑定任何东西,因为用红色边框说明了新的范围。

HTML

<div ng-app="components">
    <input ng-model="var">
    <block>
        123
        <input ng-model="var">
    </block>
</div>

JavaScript的:

angular.module('components', []).directive('block',function(){
    return{
        scope:false,
        replace:true,
        restrict:"E",
        transclude:true,
        template:'<div class="block" ng-transclude></div>',
        link:function(scope, el, attrs, ctrl){

        }
    }
});

CSS:

.ng-scope{
  border:1px solid red;
    margin:10px;
}

2 个答案:

答案 0 :(得分:7)

这里实际上是预期的行为(ng-transclude创建子范围):https://github.com/angular/angular.js/issues/1056 并在此讨论:https://groups.google.com/forum/#!msg/angular/45jNmQucSCE/hL8x48-JfZIJ

您可以通过在范围(obj.var)中的对象上设置成员来解决此问题,就像在这个小提琴中一样:http://jsfiddle.net/rdarder/pnSNj/10/

答案 1 :(得分:0)

虽然Angular团队不推荐这样做,但另一种解决方法是在transcluded部分中显式调用$ parent范围:

<div ng-app="components">
    <input ng-model="var">
    <block>
        123
        <input ng-model="$parent.var">
    </block>
</div>