gpt4 book ai didi

flash - 如何从 Flash AS3 中的 URL 获取/获取变量

转载 作者:行者123 更新时间:2023-12-04 10:31:51 25 4
gpt4 key购买 nike

所以我有一个 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;

只是不确定如何操作 String 以获取 1234 和 5678 数字。

感谢任何提示、链接或帮助!

最佳答案

创建 URLVariables 的新实例.

// given search: aID=1234&bID=5678
var search:String = ExternalInterface.call("window.location.search");
var vars:URLVariables = new URLVariables(search);
trace(vars.aID); // 1234
trace(vars.bID); // 5678

关于flash - 如何从 Flash AS3 中的 URL 获取/获取变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2725231/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com