我正在使用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吗?