1

我正在做一个指令,当我在作用域上执行控制台时,我有一个奇怪的行为,我得到一个从控制器作用域传递的值,但是当我尝试从作用域访问它时,它是未定义的,如scope.model

这是代码:

function() {
        var color = d3.interpolateRgb('#f77', '#77f');  
        return {
            template: '<div></div>',
            restrict: 'E',
            scope:{
                model:'='
            },
            link: function postLink(scope, element, attrs) {

                console.log(scope); //print model
                console.log('scope.model ',scope.model); // undefined

                var width = attrs.width || 940,
                    height = attrs.height || 500,
                    margin = 20;

                var modeler = d3.select(element[0])
                    .append('svg')
                    .attr('width', width)
                    .attr('height', height);

            }
        };
    }

HTML

<d3-directive model="model" width="920" height="510" ></d3-directive>

请看一下控制台输出: 控制台输出

4

1 回答 1

1

最后我添加了一个 $watch 覆盖范围的值并使用分配的新值。

return {
        template: '<div></div>',
        restrict: 'E',
        scope:{
            model:'='
        },
        link: function postLink(scope, element, attrs) {

            console.log(scope); 
            console.log('scope.model ',scope.model);

            scope.$watch('model',function(newValue,oldValue){
                if(!!newValue){
                    console.log(newValue);
                }
            });

            var width = attrs.width || 940,
                height = attrs.height || 500,
                margin = 20;

            var modeler = d3.select(element[0])
                .append('svg')
                .attr('width', width)
                .attr('height', height);

        }
    };
于 2014-10-21T17:52:21.720 回答