3

我需要访问指令创建的模型,同时我需要获取指令中的属性。

JS:

module.directive('createControl', function($compile, $timeout){
 return {            
   scope: {        
     name: '=Name' // Dynamically created ng-model in the directive element
   },
   link: function(scope, element, attrs){
     attrs.$observe('createControl', function(){
       attrs.createControl //is empty if scope is an object, otherwise it is passed from html attribute
     }
   }

HTML:

<div class="control-group" ng-repeat="x in selectedControls">
  <div create-control="{{ x }}"></div>
</div>

如果scope定义为对象,attrs则为空,否则为从 html 传递的值。

这种行为的原因是什么?如何访问传递的属性和模型?

4

3 回答 3

3

问题: create-control需要{{x}}在父范围内进行评估,但是通过在scope声明指令时创建一个对象,您可以创建一个隔离范围。这意味着attrs.createControl无权访问x. 因此,它是空的。

一种解决方案:您可以通过多种方式解决此问题,其中最好的方法是将指令配置scope.createControl为通过属性接受其隔离范围。

工作小提琴:http: //jsfiddle.net/pvtpenguin/tABt6/

myApp.directive('createControl', function ($compile, $timeout) {
    return {
        scope: {
            name: '@', // Dynamically created ng-model in the directive element
            createControl: '@'
        },
        link: function (scope, element, attrs) {
            scope.$watch('createControl', function () {
                // the following two statements are equivalent
                console.log(attrs.createControl);
                console.log(scope.createControl);
            })
        }
    }
})
于 2013-05-07T17:43:02.280 回答
1

同意马特,但只有在设置了 attrs 时,以下两个语句才等效。

控制台.log(attrs.createControl);

console.log(scope.createControl);

否则,attrs.createControl将是未定义的,但scope.createControl将定义一个函数。

于 2013-10-02T22:32:54.087 回答
0

我需要访问由指令创建的模型

module.directive('createControl', function($compile, $timeout){

    return {            
        ...
        require:'ngModel',
        link:function(scope, element, attrs, ngMdlCntrl){
            //You have the access to the model of your directive here thr. ngMdlCntrl
        }
        ...
    }})

要求ng-model用于您动态设置的模型。

于 2013-05-07T23:29:38.607 回答