从 Flex 3 获取当前页面的 URL?
如何从 Flex 中确定当前页面的 URL?
How do I determine the URL of the current page from within Flex?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何从 Flex 中确定当前页面的 URL?
How do I determine the URL of the current page from within Flex?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(7)
让我们在这里说清楚。
1. 如果您需要加载的 SWF 文件的 URL,请使用其中之一。
在您的应用程序内部:
从其他任何地方:
如果您将您的 SWF 加载到另一个 SWF 中,请记住上面的代码将给出不同的值。
this.url
将返回 SWF 的 url,而Application.application.url
将给出父/根 SWF 的 url。2.如果您想知道浏览器地址栏中的URL,请使用其中之一。
BrowserManager 方法(确保您的包装器 html 中包含 History.js 才能正常工作):
JavaScript 方法:
如果您正在解析参数的 url,请不要忘记这个有用的函数:
Let's be clear here.
1. If you want the URL of the loaded SWF file, then use one of these.
Inside your application:
From anywhere else:
If you are loading your SWF inside another SWF, then keep in mind that the code above will give different values.
this.url
will return the url of your SWF, where asApplication.application.url
will give the url of the parent/root SWF.2. If you want to know the URL that is in the browser address bar, then use one of these.
BrowserManager method(Make sure you have the History.js included in your wrapper html for this to work):
JavaScript method:
If you are parsing the url for parameters, don't forget about this useful function:
从应用程序:
From the Application:
我搜索并想出了 这个网址。老实说,我从未使用过 Flex,但看起来该文档的重要部分是:
无论哪种方式,祝你好运! :)
I searched and came up with this url. I've honestly never used Flex, but it looks like the important part of that document is this:
Either way, good luck! :)
使用ExternalInterface (
flash.external.ExternalInterface
),您可以在浏览器中执行Javascript。知道这一点后,您可以调用
ExternalInterface.call("window.location.href.toString");
来获取当前 URL(请注意,这将是页面 url,而不是 .swf url)。
科恩
Using ExternalInterface (
flash.external.ExternalInterface
), you can execute Javascript in the browser.Knowing this, you can call
ExternalInterface.call("window.location.href.toString");
to get the current URL (note that this will be the page url and not the .swf url).
hth
Koen
从应用程序中,使用: this.loaderInfo.loaderURL
将其分解并使用其中的一部分执行以下操作:
From the Application, use: this.loaderInfo.loaderURL
to break it apart and use parts of it do:
我尝试了 e:BrowserChangeEvent 版本,但在我的班级中它没有或不是该事件起作用的适当时机,所以简而言之它不起作用!
使用 Application.application.loaderInfo.loaderURL 是我的首选解决方案。
I tried the e:BrowserChangeEvent version and inside my class it didnt or wasnt the appropriate moment for this event to work so in short it didn't work !
Using Application.application.loaderInfo.loaderURL is my preferred solution.