如何将 MySQL 中的内容加载到 Flex 中的 HorizontalList
如何将文本从 MySQL 加载到 Flex3 中的水平列表?
我正在使用:
<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>
我还执行了“从数据库创建应用程序..”并尝试成功集成,但没有成功。
How can I load text from MySQL to an HorizontalList in Flex3 ?
I am using :
<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>
And in the CustomItemRenderer.mxml
<mx:VBox horizontalAlign="center" verticalAlign="middle">
<mx:Image source="{data.@thumbnailImage}" />
<mx:Label text="{data.@nomept}" />
</mx:VBox>
I also did the "Create Application from Database.." and tried to integrate with the success but with no success.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用“服务器端解决方案”,例如 php/rails/python/cf/ 等...以便将 mySQL 数据获取到 Flex。
你不能直接从actionscript/flex执行mySQL查询,如果你使用Adobe AIR,你可以与sqlite3通信
干杯
You need to use a "server side solution" such as php / rails / python / cf / etc... in order to get the mySQL data to Flex.
You can't execute mySQL queries directly from actionscript/flex, if you where using Adobe AIR, you could communicate with sqlite3
Cheers