从php发送一个数组到as3.0

时间:2016-05-27 19:37:12

标签: php arrays actionscript-3 flash

我正在使用as3在flash cs6中构建一个air app。我需要从php发送一个数组到flash as3.0 我想创建一个"时间线"在我的申请上。 我有很多阅读各种参考资料,但帮助不大。 这是我使用的代码。 timeline.php文件

require_once "connect.php";
$action = isset($_GET['action'])?$_GET['action']:'';
$body_nama = array();
$body_postingan = array();
$total_likers = array();
$id = array();
switch($action){
    case 'posting':
    posting();
    break;
    case 'like':
    like();
    break;
    case 'delet_ini':
    deletIni();
    break;
    case 'load_timeline':
    loadTimeline();
    break;
    case 'load_timeline_lama':
    loadTimelineLama();
    break;
}
function loadTimeline(){
    global $body_nama;
    global $body_postingan;
    global $total_likers;
    global $id;

    $query_total = "SELECT COUNT(*) FROM timeline_posts";
    $result_total = mysql_query($query_total);
    $total = mysql_result($result_total,0);

    for ($i =0; $i<=9; $i++){
        $query_timline = "SELECT * FROM timeline_posts WHERE id = ('$total'-'$i')";
        $result = mysql_query($query_timline);
        while ($data = mysql_fetch_array($result)){
            $body_nama[$i] = htmlentities($data['timeline_name']);
            $body_postingan[$i] = htmlentities($data['timeline_post']);
            $id[$i] = htmlentities($data['id']);
            print "nama[$i]=$body_nama[$i]";
            print "postingan[$i]=$body_postingan[$i]";
            print "id[$i]=$id[$i]";
        }
    }
}

这里是as3.0代码

function loadTimeline(){
    var phpFileRequest:URLRequest = new URLRequest("http://localhost/social_media_1/timeline.php?action=load_timeline");
    var phpLoader:URLLoader = new URLLoader();
    phpLoader.dataFormat = URLLoaderDataFormat.VARIABLES;
    phpLoader.addEventListener(Event.COMPLETE, onCompleteLoadTimeline);
    phpLoader.load(phpFileRequest);

    function onCompleteLoadTimeline(event:Event){

        trace (event.target.data.nama[0]);
        trace (event.target.data.postingan[0]);
        trace (event.target.data.id[0]);

    }
}

但我有错误。

  

TypeError:错误#1010:术语未定义且没有属性。在   功能/ MasagiApp_fla:MainTimeline / loadTimeline / MasagiApp_fla:onCompleteLoadTimeline()[MasagiApp_fla.MainTimeline :: frame6:52]     在flash.events::EventDispatcher/dispatchEventFunction()at   flash.events :::EventDispatcher / dispatchEvent()at   flash.net::URLLoader/onComplete()

请帮帮我

1 个答案:

答案 0 :(得分:0)

不要像处理数据一样将数据组合成字符串。在您的情况下,结果不是有效的url编码字符串(例如,缺少&amp ;,并且它不会像您在代码中那样自动转换为数组。

JSON或XML是一种更好的交换数据格式,尤其是当它具有某种结构时。我使用前者作为答案。

说到结构,在多个阵列上分布属于一起的数据是结构。没有多个具有单个属性的数组,而是一个数组,其中包含将属性组合在一起的对象。

在您的情况下,一个对象具有属性namepostingID,在JSON中看起来像这样:

{
    "name":"foo",
    "posting":"bar",
    "ID":"123"
}

由于你有很多这样的对象,它们都在一个数组中:

[
    {
        "name":"foo",
        "posting":"bar",
        "ID":"123"
    },
    {
        "name":"foo000oo",
        "posting":"baAAaar",
        "ID":"456"
    }
]

这是您的服务器响应的主体可能是什么样子。 在PHP中,您有mysqli_fetch_assoc()json_encode()将数据从数据库转换为JSON表示as you can see in this other answer

在客户端(是的,@ Jonny Henly是正确的,你不应该将函数嵌套到彼此!)你JSON.parse()收到的字符串并得到一个通用的As3 Object as结果:

function onCompleteLoadTimeline(event:Event)
{
    var result:Object = JSON.parse(event.target.data);

    trace (result[0].name);  // should give first name
}