python

关注公众号 jb51net

关闭
首页 > 脚本专栏 > python > json-server 搭建REST API 服务器

json-server 如何快速搭建REST API 服务器

作者:松柏

json-server 是一个非常流行的开源工具,用于快速搭建一个完整的 REST API 服务器,它使用 JSON 文件作为数据源,通过简单的配置即可模拟复杂的服务器功能,这篇文章主要介绍了json-server如何快速搭建REST API服务器,需要的朋友可以参考下

json-server 快速搭建REST API 服务器

★ 认识json-server 官方文档参考

json-server 是一个非常流行的开源工具,用于快速搭建一个完整的 REST API 服务器。它使用 JSON 文件作为数据源,通过简单的配置即可模拟复杂的服务器功能,非常适合前端开发者在没有后端支持的情况下进行开发和测试。

★ 主要特性:

★ 使用步骤

1-安装 json-server (需要先安装node)

npm install -g json-server

2-创建一个 JSON 文件 eg:db.json

{
  "posts": [
    { "id": "1", "title": "a title", "views": 100 },
    { "id": "2", "title": "another title", "views": 200 }
  ],
  "comments": [
    { "id": "1", "text": "a comment about post 1", "postId": "1" },
    { "id": "2", "text": "another comment about post 1", "postId": "1" }
  ],
  "profile": {
    "name": "typicode"
  }
}

​​​​​​​3-创建一个用于存放静态文件的目录,通常命名为 publicstatic

4-启动 json-server

启动说明:

1. 使用 --static 标志来指定静态文件目录。如果你没有指定,json-server 默认会查找名为 public 的目录
2. API 数据由 db.json 提供,静态文件服务由 public 目录提供
3. npx 是一个 npm 包运行器,它允许你运行在本地 node_modules 目录或远程仓库中的命令。使用 npx json-server 启动的方式不需要你全局安装 json-server

启动方式一: 在 Powershell 窗口中运行

json-server --watch [json文件所在路径] --static ./public

启动方式二:

​​​​​​​
npx json-server [json文件所在路径] --static ./public

​​​​​​​5-API接口说明

索引页路由

http://localhost:3000/

API 数据资源路由 (支持GET/POST/PATCH/DELETE)

http://localhost:3000/posts
http://localhost:3000/posts/1
http://localhost:3000/comments
http://localhost:3000/comments/1
http://localhost:3000/profile

静态文件资源路由

http://localhost:3000/index.html
http://localhost:3000/favicon.ico

到此这篇关于json-server 如何快速搭建REST API 服务器的文章就介绍到这了,更多相关json-server 搭建REST API 服务器内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文