に更新されていません。値は、私はメンバーを持っているブラウザ
私が機能を持っている:
setValue(selectionChangedEvent) {
this.airline = selectionChangedEvent.selectionChanges[0].selected[0].properties.airline;
console.log(this.airline);
}
この関数が呼び出されます:私は、コードを実行すると、私はsetValueの機能でthis.airline
の値が、値を参照ください
this._map.on('SelectionChanged', function (selectionChangedEvent) {
if (selectionChangedEvent.selectionChanges.length > 0) {
var c = new MapComponent();
c.setValue(selectionChangedEvent);
} else {
}
});
ブラウザではまだstring
です。
ブラウザで更新されないのはなぜですか?
すべての機能は同じコンポーネント内にありますか? – Moema