JSON服务器db.json结构

时间:2019-04-16 14:34:33

标签: json reactjs rest mocking json-server

我正在使用JSON Server模拟用于React应用程序的REST API。我有以下模拟数据结构

{
  "foos":
  {
    "id": 1,
    "content": "foo",
    "bars": [1]
  },

  "bars":
  {
     "id": 1,
     "content": "bar"
  }
}

但是,在检索foos时,我希望获得以下有效负载

  {
    "id": 1,
    "content": "foo",
    "bars":
    [
      {
        "id": 1,
        "content": "bar"
      }
    ]
  }

但仍要保持数据规范化,以便我可以分别更新每个实体。可以使用JSON Server吗?

0 个答案:

没有答案