0
我建立一個Flex移動應用程序,我不斷收到此錯誤:Flex的強制錯誤類型#1034
TypeError: Error #1034: Type Coercion failed: cannot convert mx.collections::[email protected] to Array.
它說,錯誤是在這裏發生(在ArrayCollection的部分):
<s:List id="invites" x="5" y="295" width="310" change="rowSelected(event)">
<s:dataProvider>
<s:ArrayCollection source="{getInvites.lastResult.Invites.EventTitle}"/>
</s:dataProvider>
</s:List>
的「getInvites」 HTTPService調用:
<s:HTTPService id="getInvites" result="getInvitesResult(event)" method="POST" url="http://localhost/invite.php" useProxy="false">
<s:request xmlns="">
<method>GET_INVITES</method>
<userID>{my_id.text}</userID>
</s:request>
</s:HTTPService>
我不知道爲什麼這個錯誤發生,我一直在嘗試網絡將其排出2小時。任何幫助,高度讚賞。
此外,還可以訪問「invite.php」文件,並且工作正常。
感謝, 雅各