我使用的是角度devexpress版本。在我的形式我有dxselectbox,它有onselectionchanged事件函数来获取所选值。我能够获得值但是在回调函数中我能够访问另一个方法是全局声明的变量,它显示未定义。
products : any[];
.....
onSelectionChangedCallback(event){
let value = event.selectedItem;
this.test(); // shows undefined
this.products; // shows undefined
}
test(){
alert('');
}
问题是什么?请帮忙