javascript – 如何通过class属性将值传递给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>

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

最佳答案 我查看了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

点赞