gpt4 book ai didi

javascript - Json-server 依赖于 uuid 而不是 id

转载 作者:搜寻专家 更新时间:2023-11-01 00:47:47 24 4
gpt4 key购买 nike

我用 json-server我使用这样的数据:

{ 
"posts": [
{ "id": 1, "title": "json-server", "author": "typicode" }
],
"comments": [
{ "id": 1, "body": "some comment", "postId": 1 }
]
}

我想使用 uuid 而不是 id,像这样:

{ 
"posts": [
{ "uuid": 1, "title": "json-server", "author": "typicode" }
],
"comments": [
{ "uuid": 1, "body": "some comment", "postId": 1 }
]
}

但问题是 json-server 在搜索时使用 id 作为主键,例如:

endpoint/posts/1
  • 有了id就可以了
  • uuid 不工作

有没有办法让 json-server 依赖 uuid 而不是 id

最佳答案

使用 --id resource_id,其中 resource 是资源的名称。在你的情况下:

json-server  db.json --id  'uuid'

关于javascript - Json-server 依赖于 uuid 而不是 id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57008239/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com