4

我正在使用 URLRequest 在 Flash 中加载外部 php 文件。但不幸的是,我收到了这个错误-

ReferenceError: Error #1069:Property email not found on String and there is no default value.
    at Main/variablesGot()
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/onComplete()

这是相关的as3代码

phpLoader.addEventListener(Event.COMPLETE, variablesGot);    
private function variablesGot(ev:Event):void

    {
        trace(ev.target.data.toString());  //THIS OUTPUTS CORRECTLY
        //OUTPUT for this trace is as follows
        //athleteName=ankur&email=email@yahoo.com&password=newpass&personalBest=9.58&shirtNumber=10         

        trace(ev.target.data.email.toString()); //LINE WITH ERROR
    }

这是我正在加载的 php 文件中的相关 php 代码

print "athleteName=".$_SESSION[athleteName];
print "&email=".$_SESSION[email];
print "&password=".$_SESSION[password];
print "&personalBest=".$_SESSION[personalBest];
print "&shirtNumber=".$_SESSION[shirtNumber];
print "&country=".$_SESSION[country];

我认为错误可能是由于我在 php 中打印的方式?但我不确定。

4

1 回答 1

7

默认情况下,URLLoader将数据加载为文本,因此email在 raw 中不存在String。尝试设置:

phpLoader.dataFormat = URLLoaderDataFormat.VARIABLES;
于 2013-02-23T20:30:38.310 回答