1

最好在这里问,因为我在谷歌搜索结果上看不到光。

最后,我的 iOS app 和 web app 可以顺利同步数据了。在 iOS 端,核心数据用于玩离线数据。在 Web 应用程序上,用户可以将自定义字段添加到任何数据库表中。因此,新添加的字段存在于较新的请求结果中。我应该如何管理我的应用程序,以便它继续使用包含新添加字段的离线数据。

解决此问题的最佳模式是什么?有没有相关的框架?

编辑:旧 REST 得到结果

{
  "status":"SUCCESS",
  "data":{
    "id":1,
    "createdDateTime":"2012-05-07 08:18:11",
    "modifiedDateTime":"2012-05-07 08:18:11",
    "createdByUser":{
      "id":1,
      "username":"super"
    },
    "modifiedByUser":{
      "id":1,
      "username":"super"
    },
    "owner":{
      "id":1,
      "username":"super"
    },
    "department":null,
    "firstName":"First",

  },
  "message":null,
  "errors":null
}

添加自定义字段后,新的 REST 结果:

 {
      "status":"SUCCESS",
      "data":{
        "id":1,
        "createdDateTime":"2012-05-07 08:18:11",
        "modifiedDateTime":"2012-05-07 08:18:11",
        "createdByUser":{
          "id":1,
          "username":"super"
        },
        "modifiedByUser":{
          "id":1,
          "username":"super"
        },
        "owner":{
          "id":1,
          "username":"super"
        },
        "department":null,
        "firstName":"First",
        "customField":"hello",
      },
      "message":null,
      "errors":null
    }
4

1 回答 1

0

这里有关于动态添加 Core Data 属性的详细讨论。

于 2013-04-01T16:20:35.913 回答