指令=和@combo

时间:2015-04-02 07:15:53

标签: angularjs angularjs-scope angular-directive

我在不同页面使用了我的指令: -

例如(原型): -

<my-directive title="{{title}}"></my-directive>

在这种情况下,我可以在范围内获得价值

scope:{
 title:"="
}

但在某些地方,数据是静态的,具有相同的指令定义: -

<my-directive title="Hello"></my-directive>

现在同一指令没有获得标题: - (

有没有办法可以使用“=”,即使是正常的字符串。

1 个答案:

答案 0 :(得分:2)

使用引号'' as,

<my-directive title="'Hello'"></my-directive>