如何通过class属性将值传递给Angular Directive?

时间:2015-09-03 22:22:50

标签: javascript angularjs wordpress directive angular-directive

我写了以下指令,当你传递推文的id时会创建一张推特卡。

angular.module('app')
     .directive('tweetCard',function () {
          return {
            transclude:true,
            template: '<ng-transclude></ng-transclude>',
            restrict: 'AEC',
            controller:function($scope, $element, $attrs){
               twttr.widgets.createTweet($attrs.tweetId,$element[0], 
                   {theme:$attrs.theme?$attrs.theme:'light'})
                   .then(function(){
                       $element.find('ng-transclude').remove();
                   });
            }
     };
});

如果我在下面使用它,这个指令很有用。

<tweet-card tweet-id="639487026052644867"></tweet-card>
<div tweet-card tweet-id="639487026052644867"></div>

虽然,我创建此指令的原因是我可以将此标记放入我的wordpress.com博客中。 在尝试之后,似乎wordpress不允许未知的标签,这是我所期望的。 但他们也不允许在帖子中使用未知属性或data- *属性。 所以我试着将所有内容都放在class属性中,如下所示。

<div class="tweet-card tweet-id:639526277649534976;"></div>

不幸的是,这不起作用,我试图摆弄它。 我可以扩展指令以检查tweetCard属性是否包含这样的id。

angular.module('app')
     .directive('tweetCard',function () {
          return {
            transclude:true,
            template: '<ng-transclude></ng-transclude>',
            restrict: 'AEC',
            controller:function($scope, $element, $attrs){
               var id = $attrs.tweetId?$attrs.tweetId:$attrs.tweetCard;
               twttr.widgets.createTweet(id,$element[0],
                   {theme:$attrs.theme?$attrs.theme:'light'})
                   .then(function(){
                       $element.find('ng-transclude').remove();
                   });
            }
     };
});

使用以下html。

<div class="tweet-card:639526277649534976;"></div>

虽然,我不喜欢这种解决方法,但我无法传递主题属性等其他属性。 任何人都知道如何通过class属性将多个变量传递给指令?

1 个答案:

答案 0 :(得分:2)

我查看了AngularJS文档,了解了通过类使用多个变量的方法,但没有找到任何内容,因此我编写了一个函数来转换语法角度读取中的类名。 (<span class="my-dir: exp;"></span>)对象。

function classNameToObj(className) {
    //different attributes are separated by semicolons
    var attributes = className.split(';');
    var obj = {};
    for (var i = 0; i < attributes.length; i++) {
        var attribute = attributes[i];
        //key-values separated by colon
        var splittedAttr = attribute.split(':');
        obj[splittedAttr[0].trim()] = splittedAttr[1].trim();
    }
    return obj;
}

这样您的HTML就可以传递推文ID和主题:

<div class="tweet-card:639526277649534976; theme:dark"></div>

你的指令可以像这样创建小部件:

var id = $attrs.tweetCard;
var attributes = classNameToObj($attrs.class);
var theme = attributes.theme;
twttr.widgets.createTweet(id, $element[0], {
        theme: theme || 'light'
    })
    .then(function() {
        $element.find('ng-transclude').remove();
    });

这是一个有效的plunkr