我正在使用Polymer.dart构建一个Dart应用程序。我的聚合物元素中有一张地图如下:
@observable Map theData = toObservable({
'name': '',
'phone': '',
'email': ''
});
...并设置以下方法:
theDataChanged() {
// ...
}
但是,在进行以下操作后,theDataChanged()
函数不被调用:
theData['name'] = 'test1';
theData.putIfAbsent('new', () => 'test2');
<property>Changed()
s不支持Map
方法吗?
答案 0 :(得分:2)