xgbnl/response

RESTFul 风格的 JSON 响应器。

dev-main 2024-03-06 08:08 UTC

This package is auto-updated.

Last update: 2024-09-06 09:12:37 UTC


README

RESTFul 风格的 JSON 响应器。

支持 Laravel。

安装

composer require xgbnl/response dev-main

GET 方法。

{
  "msg": "success",
  "code": 200,
  "data": null
}

POST、PATCH 方法。

{
  "msg": "created",
  "code": 201,
  "data": null
}

DELETE 方法。

{
  "msg": "noContent",
  "code": 204,
  "data": null
}