我是 ActionScript 和 Flash 环境的新手(刚开始),我正在尝试从 .php 文件中获取数据。所以我在网上找到了这个 AjaxRequest 类。
我正在使用我的 Main actionscript 类对其进行测试,该类与AjaxRequest.as在同一个包中
我的功能(HelloWorld.as的构造函数)是:
// Create a TextField object and set its content to my php (AJAX) output
var t:TextField = new TextField( );
//Line 38 is this :
t.htmlText=new AjaxRequest("http://localhost/my_ajax_agent.php?action=flash");
addChild(t);
当我运行主类为HelloWorld.as的 flash 文件时,出现以下错误:
C:\path\to\HelloWorld.as, Line 38 1067: Implicit coercion of a value of type pakaj:AjaxRequest to an unrelated type String.
编辑:我的问题是这样的:
为了将 AJAX 调用的结果作为字符串获取,我应该怎么做?
谢谢你的帮助 !
注意:我的 *ajax_agent.php* 文件只做这个。
if(@$_GET['action']=="flash"){echo "Hello World";}