0

我正在尝试在 Flash AS2 中发送 GET 请求,但似乎找不到有关如何返回 URL 内容的任何信息。

该 URL 将返回没有任何 HTML 标记的纯文本,因此 URL 的 HTML 代码看起来就像纯文本Plain text like this。我希望它作为字符串返回。

所以像:http://www.example.com/?name=John&age=19会返回Submitted

我需要将字符串用作 AS2 中的条件语句,例如:

if(returnedVal == "Submitted"){
 nextFrame();
} else {
 error_message._visible = true;
}
4

1 回答 1

0
var foo:LoadVars = new LoadVars();

foo.onData = function(value:String) {
    if (value != undefined) {
        trace(value);
    }
};

foo.name = "John";
foo.age = 19;
foo.sendAndLoad("content.txt", foo, "GET");
于 2013-03-14T14:01:14.583 回答