如何将 MySQL 中的内容加载到 Flex 中的 Horizo​​ntalList

发布于 2024-07-16 01:57:47 字数 924 浏览 5 评论 0原文

如何将文本从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

满栀 2024-07-23 01:57:48

您需要使用“服务器端解决方案”,例如 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文