bash
npm i json-server
全局安装
bash
npm install -g json-server
在文件根路径创建文件夹 data/db.json
定义你想要的json内容
javascript
{
"posts":[
{
"title":"json-server 安装方法",
"body":" npm i json-server",
"id":1,
"tags":[
"vue3",
"compostionApi",
"blog"
]
},
{
"title":"json-server 监听方法",
"body":"json-server --watch data/db.json",
"id":1,
"tags":[
"vue3",
"compostionApi",
"blog"
]
},
{
"title":"json-server 解决端口冲突",
"body":"json-server --watch data/db.json --port=3003",
"id":1,
"tags":[
"vue3",
"compostionApi",
"blog"
]
}
]
}
启动监听
bash
json-server --watch data/db.json
终端查看监听的json
页面使用:
javascript
// 请求模拟数据
const load=async()=>{
try{
let data=await axios.get('http://localhost:3000/posts')
.then(function (response) {
// handle success
console.log(response);
})
.catch(function (error) {
// handle error
console.log(error);
})
}catch (err){
}
}
load()