截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

JsonServer.php 3.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\server;
  20. use think\exception\HttpResponseException;
  21. use think\Response;
  22. use think\response\Json;
  23. /**
  24. * 统一Json服务类
  25. * Class JsonServer
  26. * @Author FZR
  27. * @package app\common\server
  28. */
  29. class JsonServer
  30. {
  31. private static $SUCCESS = 1; //成功状态码
  32. private static $Error = 0; //失败状态码
  33. /**
  34. * 统一返回JSON格式
  35. * @param int $code (状态码)
  36. * @param int $show (显示)
  37. * @param string $msg (提示)
  38. * @param array $data (返回数据集)
  39. * @param int $httpStatus (异常方式抛出)
  40. * @Author FZR
  41. * @return Json
  42. */
  43. private static function result(int $code, int $show, string $msg='OK', array $data=[], int $httpStatus=200) :Json
  44. {
  45. $result = array(
  46. 'code' => $code,
  47. 'show' => $show,
  48. 'msg' => $msg,
  49. 'data' => $data
  50. );
  51. return json($result, $httpStatus);
  52. }
  53. /**
  54. * 成功返回
  55. * @param string $msg (提示)
  56. * @param array $data (数据集)
  57. * @Author FZR
  58. * @return Json
  59. */
  60. public static function success(string $msg='OK', array $data=[], int $code = 1, int $show = 0) : Json
  61. {
  62. return self::result($code, $show, $msg, $data);
  63. }
  64. /**
  65. * 错误返回
  66. * @param string $msg (提示)
  67. * @param array $data (数据集)
  68. * @Author FZR
  69. * @return Json
  70. */
  71. public static function error(string $msg='Error', array $data=[],int $code = 0, int $show = 1) : Json
  72. {
  73. return self::result($code, $show, $msg, $data);
  74. }
  75. /**
  76. * Notes: 抛出JSON
  77. * @param string $msg
  78. * @param array $data
  79. * @param int $code
  80. * @Author FZR
  81. */
  82. public static function throw(string $msg='Error', array $data=[], int $code=0, int $show = 1)
  83. {
  84. $data = array('code'=>$code, 'show'=>$show, 'msg'=>$msg, 'data'=>$data);
  85. $response = Response::create($data, 'json', 200);
  86. throw new HttpResponseException($response);
  87. }
  88. }