我正在用angular创建一个dropdown-menu指令,并且有了一个主意。

无论如何,我是否可以将extend的“列表” attributes添加到nr-repeat中的DOM元素?

<li ng-repeat="item in menuItems" ng-init="extend((current_element).attributes, item.attributes)" />


我唯一的问题是我不知道如何得到上面的current_element所引用的内容。最好将current_element传递给函数:

<li ng-repeat="item in menuItems" ng-init="attributeExtend(current_element, item)" />


为了更具描述性,请说我有一个数组:

var menuItems = [
    {
        label: "One"
        attributes: {
            style: "background-color: blue"
        }
    },
    {
        label: "Two"
        attributes: {
            style: "background-color: red"
        }
    },
    {
        label: "Three"
        attributes: {
            style: "background-color: green"
        }
    }
];


..我正在为我的ng-repeat使用。

现在,一旦输入ng-init调用的函数:

<!--HTML-->
    <li class="upper-li" ng-repeat="item in menuItems" ng-init="extend(current_element, item, $index)" />

<!--SCRIPT-->
    scope.extend = function(elem, item, $index)
    {
        /*
            elem should be equal to:

                $element.find('li.upper-li')[0].children[$index]

            ..which I've discovered I can use as a work around,
            but I am still looking for my answer...
        */

        for(var key in item.attributes)
        {
            elem.setAttribute(key, item.attributes[key]);
        }
    }


我只想要一种更好的方法。谢谢。

最佳答案

DOM元素的extend属性的一种可能的简便方法是动态创建带有指令内各项的下拉列表。

 .directive("dropdown", function() {
      return function(scope, element, attrs) {
        var data = scope[attrs["dropdown"]];
        if (angular.isArray(data)) {
          var listElem = angular.element("<select>");
          element.append(listElem);
          for (var i = 0; i < data.length; i++) {
            var option = angular.element('<option>');
            for(var key in data[i].attributes)
            {
                option.attr(key, data[i].attributes[key])
            }
            listElem.append(option.text(data[i].label));
          }
        }
      }
    });


柱塞http://plnkr.co/edit/pj8QedIpbyUZVYyopQ5R

10-07 19:59