json-server本地服务器的安装
- 使用npm安装json-server服务器:
打开命令行输入: npm install -g json-server
这样就安装完成了
- 在自定义文件夹下比如名为jsonserver文件夹创建db.json文件写上以下内容保存:
{
"posts": [
{ "id": 1, "title": "json-server", "author": "typicode" }
],
"comments": [
{ "id": 1, "body": "some comment", "postId": 1 }
],
"profile": { "name": "typicode" }
}
- 运行json-serve
在自定义文件夹jsonserver这个目录下输入命令行: json-server --watch db.json
这样打开上面显示的:localhost:3000/posts 就可以获取到db.json里面的json数据