欢迎您访问365答案网,请分享给你的朋友!
生活常识 学习资料

json-server的简单使用

时间:2023-07-08

目的:

做一个本地的mock-server来模拟请求以及请求回来的过程

安装json-server:

npm install -g json-server

创建db.json:

在一个文件夹下新建一个db.json文件

{ "school": [ { "id": 1, "name": "first", "address": "beijing" } ], "student": { "name": "lihua" }}

启动json-server:

在当前文件夹下输入命令:

json-server db.json

成功:

{^_^}/ hi! Loading db.json Done Resources http://localhost:3000/school http://localhost:3000/student Home http://localhost:3000 Type s + enter at any time to create a snapshot of the database

Copyright © 2016-2020 www.365daan.com All Rights Reserved. 365答案网 版权所有 备案号:

部分内容来自互联网,版权归原作者所有,如有冒犯请联系我们,我们将在三个工作时内妥善处理。