modified 完成细节

This commit is contained in:
zhaoxiang 2020-09-30 14:43:22 +08:00
parent b1793c0c38
commit 59ec352e94
6 changed files with 87 additions and 3 deletions

2
.env
View File

@ -1 +1 @@
APP_DEBUG = true [APP] DEFAULT_TIMEZONE = Asia/Shanghai [DATABASE] TYPE = mysql HOSTNAME = 127.0.0.1 DATABASE = test USERNAME = username PASSWORD = password HOSTPORT = 3306 CHARSET = utf8 DEBUG = true [LANG] default_lang = zh-cn
APP_DEBUG = true [APP] DEFAULT_TIMEZONE = Asia/Shanghai [DATABASE] TYPE = mysql HOSTNAME = 127.0.0.1 DATABASE = apiadmin USERNAME = root PASSWORD = 123456 HOSTPORT = 3306 CHARSET = utf8 DEBUG = true [LANG] default_lang = zh-cn

View File

@ -1,4 +1,5 @@
<?php
declare (strict_types=1);
namespace app\controller\admin;

View File

@ -1,12 +1,14 @@
<?php
declare (strict_types=1);
namespace app\controller\admin;
use app\util\ReturnCode;
use think\Response;
class Miss extends Base {
public function index() {
public function index(): Response {
if ($this->request->isOptions()) {
return $this->buildSuccess();
} else {

View File

@ -0,0 +1,56 @@
<?php
declare (strict_types=1);
/**
* 工程基类
* @since 2017/02/28 创建
* @author zhaoxiang <zhaoxiang051405@gmail.com>
*/
namespace app\controller\api;
use app\BaseController;
use app\util\ReturnCode;
use think\facade\Env;
use think\Response;
class Base extends BaseController {
private $debug = [];
protected $userInfo = [];
public function _initialize() {
// $this->userInfo = ''; 这部分初始化用户信息可以参考admin模块下的Base去自行处理
}
public function buildSuccess(array $data = [], string $msg = '操作成功', int $code = ReturnCode::SUCCESS): Response {
$return = [
'code' => $code,
'msg' => $msg,
'data' => $data
];
if (Env::get('APP_DEBUG') && $this->debug) {
$return['debug'] = $this->debug;
}
return json($return);
}
public function buildFailed(int $code, string $msg = '操作失败', array $data = []): Response {
$return = [
'code' => $code,
'msg' => $msg,
'data' => $data
];
if (Env::get('APP_DEBUG') && $this->debug) {
$return['debug'] = $this->debug;
}
return json($return);
}
protected function debug($data): void {
if ($data) {
$this->debug[] = $data;
}
}
}

View File

@ -0,0 +1,25 @@
<?php
declare (strict_types=1);
namespace app\controller\api;
use app\util\StrRandom;
use think\facade\App;
use think\Response;
class Miss extends Base {
public function index(): Response {
$this->debug([
'TpVersion' => App::version(),
'Float' => StrRandom::randomPhone()
]);
return $this->buildSuccess([
'Product' => config('apiadmin.APP_NAME'),
'Version' => config('apiadmin.APP_VERSION'),
'Company' => config('apiadmin.COMPANY_NAME'),
'ToYou' => "I'm glad to meet you终于等到你"
]);
}
}

View File

@ -33,7 +33,7 @@ return [
// 全局请求缓存排除规则
'request_cache_except' => [],
// 默认控制器名
'default_controller' => 'Index',
'default_controller' => 'api.Miss',
// 默认操作名
'default_action' => 'index',
// 操作方法后缀