为什么在 FLEX 3 中有些模块可以加载而有些模块无法加载?
我有一个包含多个模块的应用程序。 任何时候都只加载一个模块。 3 个模块中有 2 个加载没有问题,但第三个新模块不会触发 ModuleEvent.Ready。 我有一个处理 ModuleEvent.PROGRESS 的事件处理函数,它只是跟踪加载的字节数与总字节数。 它似乎完全加载了模块但从未触发就绪事件。 这是我加载模块的方式:
public var moduleInfo:IModuleInfo;
public function loadModule(url:String):void{
if(moduleInfo != null)
moduleInfo.release();
moduleInfo = ModuleManager.getModule(url+"?"+"x="+Math.random().toString());
moduleInfo.addEventListener(ModuleEvent.READY,moduleLoadHandler,false,0,true);
moduleInfo.addEventListener(ModuleEvent.PROGRESS,onModuleProgress,false,0,true);
moduleInfo.load(ApplicationDomain.currentDomain);
}
I have an app with several modules. There is only one module loaded at anyone time. 2 out of the 3 modules load without problems but the third a new module will not fire the ModuleEvent.Ready. I have an event handler function that handles the ModuleEvent.PROGRESS and it just traces out the bytes loaded vs bytes total. It seems to load the module completely yet never fires the ready event. Here is how I am loading the modules:
public var moduleInfo:IModuleInfo;
public function loadModule(url:String):void{
if(moduleInfo != null)
moduleInfo.release();
moduleInfo = ModuleManager.getModule(url+"?"+"x="+Math.random().toString());
moduleInfo.addEventListener(ModuleEvent.READY,moduleLoadHandler,false,0,true);
moduleInfo.addEventListener(ModuleEvent.PROGRESS,onModuleProgress,false,0,true);
moduleInfo.load(ApplicationDomain.currentDomain);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,事实证明我已经很长时间没有创建新模块了。 我忘记了一件重要的事情。 由于我的模块位于单独的项目中,因此我需要将主 mxml 文件的根标记从应用程序更改为模块。 :)
活到老,学到老,当你错了的时候,永远不要羞于承认。
Ok, turns out it has been a long time since I created a new module. I forgot one critical thing. Since my modules are in separate projects, I need to change the root tag of the main mxml file from Application to Module. :)
Live and learn and never be ashamed to admit when you are wrong.