我正在尝试绑定值并从 dart 中的扩展类中观察,但不知何故它不起作用。
class Item extends ObservableBase {
@observable String subject;
Item(this.subject);
}
class TopItem extends Item {
TopItem(String subject):super(subject);
}
使用此绑定不起作用:
topItem = new TopItem("subject");
<input type="text" value="{{topItem.subject}}"/>
如果我使用 Item 它工作正常。我在这里做错了什么?
多谢