https://github.com/typicode/json-server
这个工具叫做 json-server
随便写一个json数据,起名为 db.json。
{
"posts": [
{
"id": 1,
"title": "json-server",
"author": "typicode"
}
],
"comments": [
{
"id": 1,
"body": "some comment",
"postId": 1
}
],
"profile": {
"name": "typicode"
}
}
在 db.json 的目录下启动命令行工具,输入指令:
json-server --watch db.json
如果没报错就算成功了。
按照提示,访问 http://localhost:3000/posts 就能看到 db.json 中的 posts 字段下的数据;
同理,如果访问 http://localhost:3000/comments 就能看到 db.json 中的 comments 字段下的数据;
如果访问 http://localhost:3000/profile 就能看到 db.json 中的 profile 字段下的数据。
https://dl.pstmn.io/download/latest/win64
用自己的邮箱注册一个,很方便。
登录进去,出现主页面。
GET 方法用来查询数据,查找字段 posts 下的所有数据。(GET /posts)
如果查询 posts 下的第一条数据:/posts/1 (这个 1 是由数据中的 id 决定的。)
POST 方法用来添加新数据,给 posts 下添加一条新数据。(POST /posts)
POST 方法上传的数据在 Body 中配置,选择第三个 x-www-form-urlencoded,将参数的键值分别写在 key 和 vlaue 中。
注意:id 不用配置进去,它会自动依次添加。
PUT 方法用来修改数据,修改 posts 下 id 为 2 的数据。(PUT /posts/2)
Body > x-www-form-urlencoded > data
DELETE 方法用来删除数据,删除 posts 下 id 为 2 的数据。(DELETE /posts/2)
原文:https://www.cnblogs.com/buildnewhomeland/p/13226648.html