美文网首页
json-server简单使用

json-server简单使用

作者: 精神病患者link常 | 来源:发表于2022-10-21 18:16 被阅读0次

本地模拟服务器返回的json数据

安装

sudo npm i -g json-server

查看

json-server -v

创建jsonServer文件夹

  • 文件夹下创建server.json
    image.png
  • 进入文件夹 cd jsonServer,执行
    json-server --watch server.json --port 3001 3001 自定义端口号
  • 浏览器访问接口
    http://localhost:3001/接口名字
  • 代码访问接口


    image.png

静态资源

  • jsonServer文件夹下创建public文件夹
  • public文件夹下创建images存放图片
    image.png
  • 浏览器访问图片
    http://localhost:3001/images/1.png
    更多使用:https://github.com/typicode/json-server

相关文章

网友评论

      本文标题:json-server简单使用

      本文链接:https://www.haomeiwen.com/subject/nhymzrtx.html