指令 = 和 @ 组合
Directive = and @ combo
我在不同的页面使用了我的指令:-
例如(原型):-
<my-directive title="{{title}}"></my-directive>
在这种情况下,我可以获得范围内的值
scope:{
title:"="
}
但在某些地方,数据是静态的,具有相同的指令定义:-
<my-directive title="Hello"></my-directive>
现在相同的指令没有获得标题:-(
有什么方法可以让我在普通字符串中使用“=”。
使用引号 ''
作为,
<my-directive title="'Hello'"></my-directive>
我在不同的页面使用了我的指令:-
例如(原型):-
<my-directive title="{{title}}"></my-directive>
在这种情况下,我可以获得范围内的值
scope:{
title:"="
}
但在某些地方,数据是静态的,具有相同的指令定义:-
<my-directive title="Hello"></my-directive>
现在相同的指令没有获得标题:-(
有什么方法可以让我在普通字符串中使用“=”。
使用引号 ''
作为,
<my-directive title="'Hello'"></my-directive>