自几个月前学习Angular以来,我的印象是`指令是通过以两种方式之一将关键字放在HTML标记中来激活的特殊函数 - 作为元素,作为属性。
例如:
<my-directive>Something</my-directive>
或
<div my-directive></div>
然而,in a Git project I came across,我看到一个指令以完全不同的方式使用,我不明白它是如何工作的。
假设只是通过向ui-router中的css: {}
函数添加.state()
的键值来激活该指令。
例如:
.state('state1', {
url: '/state',
controller: 'StateCtrl',
templateUrl: 'views/my-template.html',
data: {
css: 'styles/style1.css'
}
})
这个“指令”如何运作?
从Git项目复制的指令的Javascript源代码,因此它保留在这个问题中:
/**
* @author Manuel Mazzuola
* https://github.com/manuelmazzuola/angular-ui-router-styles
* Inspired by https://github.com/tennisgent/angular-route-styles
*/
'use strict';
angular
.module('uiRouterStyles', ['ui.router'])
.directive('head', ['$rootScope', '$compile', '$state', '$interpolate',
function($rootScope, $compile, $state, $interpolate) {
return {
restrict: 'E',
link: function(scope, elem){
var start = $interpolate.startSymbol(),
end = $interpolate.endSymbol();
var html = '<link rel="stylesheet" ng-repeat="(k, css) in routeStyles track by k" ng-href="' + start + 'css' + end + '" >';
elem.append($compile(html)(scope));
// Get the parent state
var $$parentState = function(state) {
// Check if state has explicit parent OR we try guess parent from its name
var name = state.parent || (/^(.+)\.[^.]+$/.exec(state.name) || [])[1];
// If we were able to figure out parent name then get this state
return name && $state.get(name);
};
scope.routeStyles = [];
$rootScope.$on('$stateChangeStart', function (evt, toState) {
// From current state to the root
scope.routeStyles = [];
for(var state = toState; state && state.name !== ''; state=$$parentState(state)) {
if(state && state.data && state.data.css) {
if(!Array.isArray(state.data.css)) {
state.data.css = [state.data.css];
}
angular.forEach(state.data.css, function(css) {
if(scope.routeStyles.indexOf(css) === -1) {
scope.routeStyles.push(css);
}
});
}
}
scope.routeStyles.reverse();
});
}
};
}
]);
答案 0 :(得分:1)
该指令以HTML <head>
标记命名。它假定您的html页面包含<head>
标记,并将其视为您的指令声明。它还假设角度ng-app
声明放在<html>
标记上。
该指令除了每次状态更改时都会删除并在html head标记内容中编写css <link>
标记。
请注意,在本机html标记之后命名您的指令是不可取的。这就是为什么你会看到'ng'前面的角度指令,以便将它们清楚地划分为角度标记。否则,它会导致混淆,因为你自己发现了试图理解这段git代码。