搜索

首页  >  问答  >  正文

angular.js - 关于指令link 中的创建变量问题

angular.module("myDirective",[])
    .directive("tabOne",function (){
        return{
            restrict:"E",
            replace:true,
            scope:{
                data:"=myData",
            },
            transclude:true,
            template:' <p ng-hide="show">'+
            '<p ng-repeat="x in data">'+
                '{{x}}'+
    '</p>'+
    '</p>',
            link:function(scope,elem,attr){
                scope.show=true;
               elem.find("p").on("click",function(){
                    scope.show=!scope.show;
                    console.log(scope.show);
                });
            }
        }
    })

如问题所示我现在,在link创建一个变量show,这个show用在模板表示是否hide可是 scope.show一直显示true?
不知道问题出现在哪里求赐教给位!谢谢
但是console.log(scope.show)是同步改变的啊

phpcn_u1582phpcn_u15822739 天前673

全部回复(2)我来回复

  • 给我你的怀抱

    给我你的怀抱2017-05-15 17:05:33

    改:

    elem.find("p").on("click",function(){
        scope.show=!scope.show;
        scope.$apply();
    });

    补充:

    看文档

    文档说了,如果是controller里的同步操作,或者是通过$http$timeout$interval的异步操作,scope.$apply()是自动执行的(Angular帮你做了)。但你这里显然不符合条件,你使用了DOM API,所以需要手动显示的调用一下scope.$apply()

    文档地址: scope

    回复
    0
  • 漂亮男人

    漂亮男人2017-05-15 17:05:33

    谢谢指教,看了文档ng 自己很多自己的方法都会触发apply,dom,累死settimeout的操作不会触发apply

    回复
    0
  • 取消回复