我的 flex 应用程序中有一个组合框控件:
<mx:ComboBox id="ispList" width="230" borderColor="#000000"
change="queryHandlerMaster(event)" color="#000000">
我观察到queryHandlerMaster
刚加载应用程序时会不必要地调用它。
如何避免这个电话?
我的 flex 应用程序中有一个组合框控件:
<mx:ComboBox id="ispList" width="230" borderColor="#000000"
change="queryHandlerMaster(event)" color="#000000">
我观察到queryHandlerMaster
刚加载应用程序时会不必要地调用它。
如何避免这个电话?
有几种可能性
也就是说,不应在 App init 上触发 onChange。我的猜测是您在应用程序初始化后不久修改 ComboBox,并且由于程序运行速度如此之快,您认为它发生在应用程序初始化时。