如何从后端将大量数据写入 xml 文件,并且我想将 xml 文件绑定到列表中?

发布于 2024-08-29 17:58:32 字数 105 浏览 3 评论 0原文

我想将大量数据写入xml文件,数据来自后端(mysql),使用cgi通过httpservice,读取xml文件并将其绑定到列表中... 任何人都可以发送此示例代码吗?

提前致谢..

I want to write the bulk of data into xml file ,the data coming from the backend(mysql) using cgi by httpservice, read the xml file and bind it into list...
can anyone send the sample code for this?

Thank's in advance..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

﹂绝世的画 2024-09-05 17:58:32
<mx:HTTPService url="backend-url.cgi" id="service"/>
<mx:List dataProvider="{service.lastResult.yourElementName}"/>

您还应该

  • 从应用程序的 creationComplete 处理程序中调用 service.send()
  • 指定 labelFielddataField列出(如适用)
<mx:HTTPService url="backend-url.cgi" id="service"/>
<mx:List dataProvider="{service.lastResult.yourElementName}"/>

You should also

  • Call service.send() from the Application's creationComplete handler
  • Specify the labelField, dataField etc for the List as applicable
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文