在 iOS 设备之间交换结构数据的建议方法是什么?

发布于 2024-09-30 05:30:58 字数 409 浏览 3 评论 0原文

采购订单为例。有采购订单标题和一行或多行采购订单详细信息

            +--- PO detail 1
            |
PO header --+--- PO detail 2
            | 
           ...
            | 
            +--- PO detail n

假设采购订单存储在核心数据数据库中。使用同一个应用程序在 iOS 设备之间交换一些 PO 记录的建议方法是什么?我正在考虑将记录打包为 json 格式、zip 并通过电子邮件发送给收件人。 Core Data 中是否有任何内置机制可以在一个设备中序列化数据并在另一设备中反序列化?谢谢!

Take Purchase Order as an example. There is Purchase Order header and one or more rows of Purchase Order details:

            +--- PO detail 1
            |
PO header --+--- PO detail 2
            | 
           ...
            | 
            +--- PO detail n

Assuem the POs are stored in a Core Data database. What's the suggested way to exchange some PO records among iOS devices, using the same app? I am thinking of packing the records in json format, zip and email to recipient(s). Is there any built-in mechanism in Core Data to serialize data in one device and de-serialize in another device? Thanks!

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

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

发布评论

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

评论(1

别把无礼当个性 2024-10-07 05:30:58

没有用于翻译数据的内置 API。我推荐并使用 JSON 作为传输格式。我编写了一个通用(粗略)递归解析器来回答 另一个StackOverflow 问题

There is no built in API for translating the data. I recommend and use JSON as a transport format. I wrote a generic (and rough) recursive parser in answer to another StackOverflow question.

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