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