0

我在 as3 中使用以下代码:

var Request:URLRequest = new URLRequest();
var xmlMain:XML=new XML();
var urlXmlLoader:Loader = new Loader();
var myVars:URLVariables = new URLVariables();

myVars.RequestXml = xmlMain;
Request.url = "http://www.xyz.php"; //some php url

Request.method = URLRequestMethod.POST;
Request.data = myVars;
urlXmlLoader.dataFormat = URLLoaderDataFormat.TEXT;
urlXmlLoader.addEventListener(Event.COMPLETE, getData);
urlXmlLoader.addEventListener(IOErrorEvent.IO_ERROR, onIOError);
urlXmlLoader.load(Request);

现在我有一个 as2 项目,我需要做同样的事情。在as2中怎么做??

4

1 回答 1

0

这可能是关于 AS2 中 HTTP 请求的最佳教程:http ://www.sephiroth.it/tutorials/flashPHP/loadVars/

于 2012-07-16T12:04:43.700 回答