gpt4 book ai didi

Flash - ActionScript 2 - HTTP 请求

转载 作者:塔克拉玛干 更新时间:2023-11-01 19:14:09 26 4
gpt4 key购买 nike

我是 Flash 的新手,我不知道如何进行简单的 URL 请求,这让我很烦恼。我不想做 XML。我只需要读取一个文件,例如:example.com/file.txt 或 example.com/file.php。

我正在重新使用 Actionscript 2.0,有谁知道如何在 FLASH 中执行简单的 HTTP 请求,感谢它让我发疯,我找不到它。

提前致谢。

最佳答案

使用 PHP 代码读取 .txt 文件,而不是使用如下代码:

function loadData():Void {
var recive:LoadVars = new LoadVars();
recive.onLoad = function(loading:Boolean):Void {
if (loading) { //if were variables succesfully loaded
trace(unescape(this)); //trace PHP variables
} else {
trace("Error!"); // if wasn't process succesfull, trace error
}
};
var send:LoadVars = new LoadVars();
send.premenna = "text"; // send to $_POST['text'] in php
send.sendAndLoad("www.web.comfile.php", recive, "POST"); //send and load variables
}
_root.tlacitko.onRelease = loadData; //do it after button is pressed

简而言之,使用 loadVars 加载 php 变量。 (不要看评论....)

关于Flash - ActionScript 2 - HTTP 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6968773/

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