这个AngularJS指令有什么问题?

时间:2015-11-25 09:04:03

标签: javascript angularjs angularjs-directive

我正在尝试为AngularJS编写一个imgix指令。这是我的代码:

MetronicApp
.directive('imgix', function() {
    return {
        replace: true,
        scope: {
            url: '='
        },
        restrict: "A",
        template: "<img class='thumbnail inline' width={{w}} height={{h}} src='https://mysite.imgix.net/{{url}}?h={{h}}&w={{w}}&fit=crop'>",
        link: function(scope, elm, attrs) {
            function ctrl(value, mode) {
                // check inputs
                if ((value === null) || (value === undefined) || (value === '')) {
                    // let's do nothing if the value comes in empty, null or undefined
                    return;
                }

                scope.h = attrs.height || 50;
                scope.w = attrs.width || 50;
                scope.url = value;


            }

            // by default the values will come in as undefined so we need to setup a
            // watch to notify us when the value changes
            scope.$watch(attrs.url, function(value) {
                ctrl(value, 'url');
            });
        }
    };
});

在html中,我有2张图片:

 <img imgix data-height="200" data-width="200" url="theme.options.homepageBackground" />

 <img imgix data-height="200" data-width="200" url="theme.options.menuBackground" />

但结果如图所示:

enter image description here

我不明白出了什么问题。是否有关于范围的事情?

3 个答案:

答案 0 :(得分:1)

我建议使用ng-src属性并将链接函数中的整个url传递给指令。

答案 1 :(得分:1)

您的指令范围绑定到父范围。改为使用儿童或孤立的范围。

MetronicApp.directive('imgix', function() { return { scope: { url: '=' }

答案 2 :(得分:0)

我用马蒂亚斯和朱利安的组合解决了这个问题

首先,我在指令中添加了大括号:

<imgix data-height="200" data-width="200" url="{{theme.options.menuBackground}}" />

然后我将范围:{}添加到指令代码

我看到监视代码中的值返回undefined。我改变了:

scope.$watch(attrs.url, function(value) {
                ctrl(attrs.url, 'url');
            });

现在它有效。谢谢。