So che questa è una vecchia domanda, ma Google mi ha portato qui e non mi piacevano le risposte qui ... Sembravano davvero complicate per qualcosa che dovrebbe essere semplice. Così ho creato questa direttiva:
***** ***** nuovi contenuti
allora ho fatto di questa direttiva più generico, sostenendo una analizzata (il valore tipico angolare) "attributi" attributo.
/**
* Author: Eric Ferreira <http://stackoverflow.com/users/2954747/eric-ferreira> ©2016
*
* This directive takes an attribute object or string and adds it to the element
* before compilation is done. It doesn't remove any attributes, so all
* pre-added attributes will remain.
*
* @param {Object<String, String>?} attributes - object of attributes and values
*/
.directive('attributes', function attributesDirective($compile, $parse) {
'use strict';
return {
priority: 999,
terminal: true,
restrict: 'A',
compile: function attributesCompile() {
return function attributesLink($scope, element, attributes) {
function parseAttr(key, value) {
function convertToDashes(match) {
return match[0] + '-' + match[1].toLowerCase();
}
attributes.$set(key.replace(/([a-z][A-Z])/g, convertToDashes), value !== undefined && value !== null ? value : '');
}
var passedAttributes = $parse(attributes.attributes)($scope);
if (passedAttributes !== null && passedAttributes !== undefined) {
if (typeof passedAttributes === 'object') {
for (var subkey in passedAttributes) {
parseAttr(subkey, passedAttributes[subkey]);
}
} else if (typeof passedAttributes === 'string') {
parseAttr(passedAttributes, null);
}
}
$compile(element, null, 999)($scope);
};
}
};
});
Per caso d'uso del PO, si potrebbe fare:
<li ng-repeat="color in colors">
<span attributes="{'class': color.name}"></span>
</li>
o di usarlo come una direttiva attributo:
<li ng-repeat="color in colors">
<span attributes="color.name"></span>
</li>
***** FINE nuovi contenuti ** ****
/**
* Author: Eric Ferreira <http://stackoverflow.com/users/2954747/eric-ferreira> ©2015
*
* This directive will simply take a string directive name and do a simple compilation.
* For anything more complex, more work is needed.
*/
angular.module('attributes', [])
.directive('directive', function($compile, $interpolate) {
return {
template: '',
link: function($scope, element, attributes) {
element.append($compile('<div ' + attributes.directive + '></div>')($scope));
}
};
})
;
Per il caso specifico in questo q Uestion, si può semplicemente riscrivere la direttiva un po 'per farlo applicare la direttiva a un arco per classe, come così:
angular.module('attributes', [])
.directive('directive', function($compile, $interpolate) {
return {
template: '',
link: function($scope, element, attributes) {
element.replaceWith($compile('<span class=\"' + attributes.directive + '\"></span>')($scope));
}
};
})
;
Quindi è possibile utilizzare questo ovunque e selezionare una direttiva in base al nome in modo dinamico. Usalo in questo modo:
<li ng-repeat="color in colors">
<span directive="{{color.name}}"></span>
</li>
Ho volutamente mantenuto questa direttiva semplice e diretto. Potresti (e probabilmente lo farai) riformulare per soddisfare le tue esigenze.
domanda interessante! – TheHippo
Non sono sicuro che sia possibile. È possibile passare color.name come parametro a una singola direttiva, quindi controllare il valore ed eseguire/chiamare il codice appropriato da lì. – mikel