json-server提供假数据接口

1.json-server 作用: 根据指定的JSON文件,提供假数据接口

2.使用步骤

1.全局安装 json-server :npm i -g json-server
2.准备一个json数据
3.执行 : json-server data.json
01.png
json-server提供假数据接口_第1张图片
02.png
打开http://localhost:3000/list](http://localhost:3000/list页面 json数据为
json-server提供假数据接口_第2张图片
03.png
data.json的代码为:
{
    "list": [{
            "id": 1,
            "name": "张三",
            "age": 10
        },
        {
            "id": 2,
            "name": "李四",
            "age": 20
        },
        {
            "id": 3,
            "name": "王五",
            "age": 30
        }
    ]
}

REST API 格式

1. 查看 GET
2.添加 POST
3.删除 DELETE
4.更新 PUT/PATCH(打补丁)

1.查看全部 http://localhost:3000/list

2.查看具体的 http://localhost:3000/list/2

3.添加 http://localhost:3000/list

POST {name, age}

4.删除(DELETE) http://localhost:3000/list/3

5.更新(PUT) http://localhost: 3000/list/3

你可能感兴趣的:(json-server提供假数据接口)