Polymer.dart <property>更改的功能不使用Map </property>

时间:2013-12-26 13:13:45

标签: dart dart-polymer

我正在使用Polymer.dart构建一个Dart应用程序。我的聚合物元素中有一张地图如下:

@observable Map theData = toObservable({
  'name':   '',
  'phone':  '',
  'email':  ''
});

...并设置以下方法:

theDataChanged() {
  // ...
}

但是,在进行以下操作后,theDataChanged()函数被调用:

theData['name'] = 'test1';
theData.putIfAbsent('new', () => 'test2');

<property>Changed() s不支持Map方法吗?

1 个答案:

答案 0 :(得分:2)