AngulaJS指令transclude范围=假? [英] AngulaJS directive transclude scope=false?

查看:157
本文介绍了AngulaJS指令transclude范围=假?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何prevent指令与transclude创造新的领域?

How to prevent directive with transclude to create new scopes?

的jsfiddle 我不能绑定任何因与红色边框所示的新范围。

This jsfiddle I cant bind anything due to the new scopes illustrated with red borders.

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;
}


    

推荐答案

它实际上是预期的行为作为这里所说(NG-transclude创建一个子范围内):<一href=\"https://github.com/angular/angular.js/issues/1056\">https://github.com/angular/angular.js/issues/1056
这里讨论:<一href=\"https://groups.google.com/forum/#!msg/angular/45jNmQucSCE/hL8x48-JfZIJ\">https://groups.google.com/forum/#!msg/angular/45jNmQucSCE/hL8x48-JfZIJ

It is actually expected behavior as stated here (ng-transclude create a child scope): https://github.com/angular/angular.js/issues/1056 and discussed here: https://groups.google.com/forum/#!msg/angular/45jNmQucSCE/hL8x48-JfZIJ

您可以通过在范围(obj.var)在对象上设置一个成员想在这个小提琴解决此//jsfiddle.net/rdarder/pnSNj/10/

You can workaround this by setting a member on an object in the scope (obj.var) like in this fiddle: http://jsfiddle.net/rdarder/pnSNj/10/

这篇关于AngulaJS指令transclude范围=假?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆