12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
- // +----------------------------------------------------------------------
- // | Think.Admin
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: http://think.ctolog.com
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // +----------------------------------------------------------------------
- // | github开源项目:https://github.com/zoujingli/Think.Admin
- // +----------------------------------------------------------------------
- namespace controller;
- use service\ToolsService;
- use think\Request;
- use think\Response;
- /**
- * 数据接口通用控制器
- * Class BasicApi
- * @package controller
- */
- class BasicApi
- {
- /**
- * 访问请求对象
- * @var Request
- */
- public $request;
- /**
- * 当前访问身份
- * @var string
- */
- public $token;
- /**
- * 基础接口SDK
- * @param Request|null $request
- */
- public function __construct(Request $request = null)
- {
- // CORS 跨域 Options 检测响应
- ToolsService::corsOptionsHandler();
- // 输入对象
- $this->request = is_null($request) ? Request::instance() : $request;
- }
- /**
- * 输出返回数据
- * @param string $msg 提示消息内容
- * @param string $code 业务状态码
- * @param mixed $data 要返回的数据
- * @param string $type 返回类型 JSON XML
- * @return Response
- */
- public function response($msg, $code = 'SUCCESS', $data = [], $type = 'json')
- {
- $result = ['msg' => $msg, 'code' => $code, 'data' => $data, 'type' => strtolower($type)];
- return Response::create($result, $type)->header(ToolsService::corsRequestHander())->code(200);
- }
- }
|