如何将文本从MySQL加载到Flex3中的HorizontalList?
我正在使用:
<mx:ControlBar x="10" y="40" width="460" height="230">
<mx:HorizontalList id="dataGrid"
dataProvider="{dataArr}"
labelField="lbl"
iconField="src"
itemRenderer="CustomItemRenderer"
columnCount="4"
columnWidth="100"
rowHeight="100"
horizontalScrollPolicy="on"
width="439" height="230"/>
</mx:ControlBar>
在CustomItemRenderer.mxml
中<mx:VBox horizontalAlign="center" verticalAlign="middle">
<mx:Image source="{data.@thumbnailImage}" />
<mx:Label text="{data.@nomept}" />
</mx:VBox>
我还做了“从数据库中创建应用程序......”并尝试与成功集成,但没有成功。
答案 0 :(得分:0)
您需要使用“服务器端解决方案”,例如php / rails / python / cf / etc ...,以便将mySQL数据提供给Flex。 您无法直接从actionscript / flex执行mySQL查询,如果您使用Adobe AIR,则可以与sqlite3进行通信
干杯