为什么在 FLEX 3 中有些模块可以加载而有些模块无法加载?

发布于 2024-07-15 09:06:58 字数 703 浏览 3 评论 0原文

我有一个包含多个模块的应用程序。 任何时候都只加载一个模块。 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

对你再特殊 2024-07-22 09:06:58

好吧,事实证明我已经很长时间没有创建新模块了。 我忘记了一件重要的事情。 由于我的模块位于单独的项目中,因此我需要将主 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文