如何从远程对象AMFPHP Flex 4.5检索结果

时间:2012-02-05 15:34:04

标签: php actionscript-3 flex amfphp remoteobject

我有一个关于flex 4 remoteObjects的快速问题。 我想通过amfphp从MySql DB检索信息到Flex 4.5。 我正在使用remoteobject标签。我想使用结果属性,但它似乎不适合我。我做错了什么?

如果我在没有结果处理程序的情况下从数据库收集信息,它可以正常工作,但是当我想在数组收集中收集信息时它不起作用。 arraycollection永远不会被我检索的信息填满。

这有效;

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
           xmlns:s="library://ns.adobe.com/flex/spark" 
           xmlns:mx="library://ns.adobe.com/flex/mx" 
           minWidth="955" minHeight="600"
           creationComplete="initApp()">

<fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    <mx:RemoteObject id="myRemote" 
                     destination="solicitantService" 
                     source="resume.solicitantService"   
                     endpoint="http://localhost:8181/amfphp/gateway.php"/>
</fx:Declarations>

<fx:Script>
    <![CDATA[

        private function initApp():void
        {
            myRemote.getUsers();
        }

    ]]>
</fx:Script>

<mx:DataGrid id="myGrid" dataProvider="{myRemote.getUsers.lastResult}"/>    
</s:Application>

这不起作用。

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
           xmlns:s="library://ns.adobe.com/flex/spark" 
           xmlns:mx="library://ns.adobe.com/flex/mx" 
           minWidth="955" minHeight="600"
           creationComplete="initApp()">

<fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    <mx:RemoteObject id="myRemote" 
                     destination="solicitantService" 
                     source="resume.solicitantService"   
                     endpoint="http://localhost:8181/amfphp/gateway.php"
                     result="myRemote_resultHandler(event)"/>
</fx:Declarations>


<fx:Script>
    <![CDATA[
        import mx.collections.ArrayCollection;
        import mx.rpc.events.ResultEvent;

        [Bindable]
        private var users:ArrayCollection = new ArrayCollection();


        private function initApp():void
        {
            myRemote.getUsers();
        }

        protected function myRemote_resultHandler(event:ResultEvent):void
        {
            users = event.result as ArrayCollection;
        }

    ]]>
</fx:Script>

<mx:DataGrid id="myGrid" dataProvider="{users}"/>
</s:Application>
我在做错了什么?有人可以帮忙解决这个问题吗?我用spark和mx数据网格试了一下。

我找到了解决方案。从Php我解除一个数组而不是一个ArrayCollection。

2 个答案:

答案 0 :(得分:1)

amfPHP不会将结果作为ArrayCollection返回,而是返回一个数组。把这个部分搞清楚了。

这是一些真正帮助我的代码的链接。它从基本字符串开始,然后是对象,然后是对象数组。

http://www.brentknigge.com/?q=node/499

答案 1 :(得分:0)

这是因为您要将数组分配给数组集合。

如果没有你的php功能洞察力,很难准确回答。如果你的php服务返回这样的东西:

$outputArray['users'] = myUsers(); //here myUsers() is a function which is doing the query and fetching the results

你可以把它放在这样的数组集合中:

var usersCollection:ArrayCollection = new ArrayCollection(event.result.usres);

希望有所帮助