Flex modulleader url,为什么不能只看根目录?
我们使用 pureMVC 多核作为 Flex 框架, 当我们需要加载模块时,我们使用第一行“moduleEval.swf”;。
它在本地测试中运行良好。
但不是在在线的生产服务器上,在这种情况下我需要输入完整的 URL。
这正常吗?
moduleLoader.url = "moduleEval.swf";
//moduleLoader.url = "http://www.foobar.com/site_media/mymodule.swf";
谢谢,
格雷格
We are using pureMVC multicore as the flex Framework,
When we need to load a module we use the first line "moduleEval.swf";.
It works well in local for testing.
But not on the production server which is obvioulsy online, in which case i need to put he full URL.
Is that normal ?
moduleLoader.url = "moduleEval.swf";
//moduleLoader.url = "http://www.foobar.com/site_media/mymodule.swf";
Thanks,
Greg
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我几乎总是使用绝对网址,不带网站名称。 URL 基目录是根应用程序所在的位置。 因此,如果您在另一个应用程序中加载一个模块,并且该模块加载另一个或其他内容,则任何相对 URL 都是相对于基本应用程序的。
I almost always use absolute urls, without the site name. The URL base directory is wherever your root application is. So if you load a module within another app, and that module loads another or something, any relative urls are relative to the base app.