AS2 Load Vars SendAndLoad返回undefined

时间:2014-03-14 14:05:30

标签: php actionscript-2

我有一个在actionscript2中开发的旧网站,我必须从php中的数据库中获取一些信息。

我尝试使用SendAndLoad方法,但始终返回undefined。

这是我的flash脚本:

news = new LoadVars();
news.onLoad = function(success){
      if(success){
         trace(this.msg);
      } else {
         trace("Error reading the php page");

      }
   }
 news.sendAndLoad("json/news.php", news, "POST");

这是news.php(只有一个测试但不起作用总是返回未定义的msg)

<?php
    echo "login=false&";
    echo "msg=missing data";
?>

我该如何解决?

由于

1 个答案:

答案 0 :(得分:0)

你需要2个LoadsVars。一个用于发送,一个用于接收。

toSend.sendAndLoad(address, toRecieve, 'POST');