我有一个我想以这种方式使用的组件:
<my-component text='ctrl.text' editable></my-component>
editable
是布尔值,并且遵循正确的HTML语义,不需要值。如果包含editable
属性,则它映射到空字符串,如果不包含,则处理它返回null。
在我的组件代码中使用此布尔值的正确和惯用方法是什么?
答案 0 :(得分:1)
我认为这就是你要找的Port of ng-attr-foo from angular-js 它还没有在主分支中,因此也没有在当前版本(0.9.4)
中ng_attribute.dart的DartDoc评论中的示例显示了如何使用它。