Phonegap:Sqlite ->从手机导出数据

发布于 2024-12-28 18:54:56 字数 107 浏览 0 评论 0原文

从 sqlite 支持的 Phonegap 应用程序中提取或导出数据的选项有哪些?

我希望用户能够“导出”其数据的 json 或 xml 表示形式,但不确定处理此问题的正确方法是什么。

What are the options for extracting or exporting data from a sqlite backed Phonegap application?

I'd like the user to be able to "export" a json or xml representation of their data, not sure what the correct way to handle this.

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

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

发布评论

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

评论(1

不爱素颜 2025-01-04 18:54:56

那么,您需要执行以下步骤:

  1. 创建一个 FileWriter
  2. 通过结果查询 DB
  3. 循环,并以您选择的格式将每一行写入 FileWriter。
  4. 调用 FileTransfer.upload() 方法将文件发送到服务器。

或者,您可以:

  1. 查询数据库
  2. 通过结果
  3. 循环,构建 XML 文档的 JSON 对象。使用 XHR 将数据发布到服务器。

Well, you'd want to go through the following steps:

  1. Create a FileWriter
  2. Query your DB
  3. Loop through the results writing each line to the FileWriter in the format of your choice.
  4. Call the FileTransfer.upload() method to send your file to a server.

Alternatively you could:

  1. Query your DB
  2. Loop through the results building an JSON object of XML doc.
  3. Use XHR to post the data to a server.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文