带有Rest API的IOS Swift的正确Json结构

时间:2018-09-22 05:37:04

标签: json rest object

要从需要存储多次出现信息的IOS快速设备获取正确的JSON结构。我必须存储一个人的多个地址,其中一个是他当前居住的地址。快速编写IOS应用程序时,我应如何接受当前入住。我使用“ iscurrent”检查当前和以前的入住情况。还请提出在get API中发送此json信息的正确方法是什么。我正在使用下面的帖子以及获取。在发送时,当前占用率始终排在最前面。

{
  "items": [
    {
      "address": "string",
      "city": "string",
      "suburb": "string",
      "postcode": "string",
      "moveindate": "string",
      "landlordname": "string",
      "landlordemail": "string",
      "iscurrent": 0,
      "occid": 0
    }
  ]
}

有人建议我保存后按以下方式发送。

{
  "items": 
    "iscurrent" = {
      "address": "string",
      "city": "string",
      "suburb": "string",
      "postcode": "string",
      "moveindate": "string",
      "landlordname": "string",
      "landlordemail": "string",
      "occid": 1
    },
  "previous" = [{
      "address": "string",
      "city": "string",
      "suburb": "string",
      "postcode": "string",
      "moveindate": "string",
      "landlordname": "string",
      "landlordemail": "string",
      "occid": 2
    },{
      "address": "string",
      "city": "string",
      "suburb": "string",
      "postcode": "string",
      "moveindate": "string",
      "landlordname": "string",
      "landlordemail": "string",
      "occid": 3
    },
   ]

} 

0 个答案:

没有答案