如何在 Flash AS3 中从 URL 获取变量
所以我有一个 URL,我需要 Flash 影片从中提取变量:
示例链接:
http://www.example.com/example_xml.php?aID=1234& ;bID=5678
我需要获取 aID 和 bID 号码。
我可以通过ExternalInterface 将完整的URL 获取到字符串中,
var url:String = ExternalInterface.call("window.location.href.toString");
if (url) testField.text = url;
只是不确定如何操作字符串来获取1234 和5678 数字。
感谢任何提示、链接或帮助!
So I have a URL that I need my Flash movie to extract variables from:
example link:
http://www.example.com/example_xml.php?aID=1234&bID=5678
I need to get the aID and the bID numbers.
I'm able to get the full URL into a String via ExternalInterface
var url:String = ExternalInterface.call("window.location.href.toString");
if (url) testField.text = url;
Just unsure as how to manipulate the String to just get the 1234 and 5678 numbers.
Appreciate any tips, links or help with this!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建
URLVariables
的新实例。Create a new instance of
URLVariables
.未经测试的代码!这只是简单的字符串操作。
而且...几乎是 1 行(也未经测试),
但当然,使用 urlVariables 可能会更好:)
Untested code! This is just with simple string manipulation.
and... almost 1-liner (also untested)
but of course it's probably better to go with urlVariables :)