我有一个指令可以提取我的.CSS文件(带有一些额外的逻辑)。
它写在我的标记中:
<head>
<link my-style />
....
我的指示如下:
app.directive('myStyle', function() {
return {
replace: true,
template: '<link href="style.css" rel="stylesheet" />',
transclude: true
};
});
然而,检查结果html,我看到:
<link rel="stylesheet" href="style.css" my-style="">
/* Put your css in here */
p {
color: red;
}
</link>
具体来说,目的是什么:
my-style=""