三叶草 发表于 2021-12-24 22:22:13

#yyds干货盘点# Json Server

    有时候需要mock数据,这两天一个大佬给我推荐了这个Json Server,告诉我十分钟就能学会。
    然后进今天花时间看了一下。

一、创建一个文件夹
    首先随便建一个文件夹,然后点进去,在红框里面输入cmd,按Enter,也可以用vscode打开文件夹,在终端进行。


二、安装
    然后安装。
npm install json-server

三、初始化一个package.json文件
    同样地,也可以在vscode终端运行。
    输入命令生成package.json文件。
npm init --yes


四、启动JSon Server脚本
    在package.json里面的脚本script这里添加。
"serve":"json-server --watch db.json"
    然后再运行命令启动Json server。
npm run serve    当成功之后,你会发现生成了一个文件,db.json,你后面所有的数据都应该写在这里面。

db.json
{
"posts": [
    {
      "id": 1,
      "title": "json-server",
      "author": "typicode"
    }
],
"comments": [
    {
      "id": 1,
      "body": "some comment",
      "postId": 1
    }
],
"profile": {
    "name": "typicode"
}
}
    以后接口baseURL就是在http://localhost:3000这里了。此时你去访问它,会见到下面这样一个页面。

    观察一下db.json文件,整体是一个对象,里面的数据都是对象或者数组格式,引号都要用双引号,而且列表里面的每一个对象都应该有一个id。
    如果在后面加一个路径访问,http://localhost:3000/db,你会得到db.json里面的所有数据。

    如果在后面加一个路径访问,http://localhost:3000/posts,你会得到数据。


五、访问数据方式
    刚刚上面的访问的方式都是GET请求。也可以用POST、PUT、DELETE等方式进行请求数据。

六、自己设定数据
{
"posts": [
    {
      "id": 1,
      "title": "他好帅",
      "author": "王一博"
    },
    {
      "id": 2,
      "title": "他好棒",
      "author": "杨洋"
    },
    {
      "id": 3,
      "title": "他好赞",
      "author": "谢允"
    }
],
"comments": [
    {
      "id": 1,
      "body": "some comment",
      "postId": 1
    }
],
"profile": {
    "name": "蓝忘机"
}
}
[*]http://localhost:3000/posts/1


[*]带参数http://localhost:3000/posts?id=1


[*]分页获取数据http://localhost:3000/posts?_page=3&_limit=1

    _limit每页多少条数据,_page当前是第几页。

[*]排序
http://localhost:3000/posts?_sort=id&_order=desc    让id进行降序排列返回。

[*]选择数据http://localhost:3000/posts?_start=0&_end=2    返回前两条数据。

[*]选择满足一定条件的数据http://localhost:3000/posts?id_gte=1&id_lte=2    返回id大于等于1小于等于2的数据。



https://blog.51cto.com/u_14176889/4838258
页: [1]
查看完整版本: #yyds干货盘点# Json Server