:"=compare",这是什么写法
o.scope = {
orgText :'=compare'
}
o.scope = {
orgText :'=compare'
}
2016-09-26
这是directive和html 传递数据的,"=" 通过 directive 的 attr 属性的值在局部 scope 的属性和父 scope 属性名之间建立双向绑定。当你想要一个双向绑定的属性的时候,你可以使用=来引入外部属性。无论是改变父 scope 还是隔离 scope 里的属性,父 scope 和隔离 scope 都会同时更新属性值,因为它们是双向绑定的关系 ,详情戳 http://stackoverflow.com/questions/14050195/what-is-the-difference-between-and-in-directive-scope-in-angularjs
举报