Ho un tag personalizzato in un routeProvider
modello che richiede un directive
modello. L' version
attributo verrà popolato dall'ambito che quindi richiede il modello giusto.
<hymn ver="before-{{ week }}-{{ day }}"></hymn>
Esistono più versioni dell'inno in base alla settimana e al giorno. Mi aspettavo di usare la direttiva per popolare la .html
parte corretta . La variabile non viene letta da templateUrl
.
emanuel.directive('hymn', function() {
var contentUrl;
return {
restrict: 'E',
link: function(scope, element, attrs) {
// concatenating the directory to the ver attr to select the correct excerpt for the day
contentUrl = 'content/excerpts/hymn-' + attrs.ver + '.html';
},
// passing in contentUrl variable
templateUrl: contentUrl
}
});
Ci sono più file nella directory estratti che sono etichettati before-1-monday.html
, before-2-tuesday.html
, ...