From c9450bfa9687546fd3ad4be76b5fbe11dbedc8d6 Mon Sep 17 00:00:00 2001 From: zhaoxiang Date: Sat, 10 Oct 2020 16:39:07 +0800 Subject: [PATCH] =?UTF-8?q?modified=20=E6=B7=BB=E5=8A=A0redis=E9=85=8D?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/api/Miss.php | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/app/controller/api/Miss.php b/app/controller/api/Miss.php index da69fea..2a328f7 100644 --- a/app/controller/api/Miss.php +++ b/app/controller/api/Miss.php @@ -4,22 +4,28 @@ declare (strict_types=1); namespace app\controller\api; use app\util\StrRandom; +use think\Exception; use think\facade\App; use think\Response; class Miss extends Base { public function index(): Response { - $this->debug([ - 'TpVersion' => App::version(), - 'Float' => StrRandom::randomPhone() - ]); + $version = config('apiadmin.APP_VERSION'); + if (!$version) { + throw new Exception('请先执行安装脚本,完成项目初始化!'); + } else { + $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(终于等到你!)" - ]); + return $this->buildSuccess([ + 'Product' => config('apiadmin.APP_NAME'), + 'Version' => $version, + 'Company' => config('apiadmin.COMPANY_NAME'), + 'ToYou' => "I'm glad to meet you(终于等到你!)" + ]); + } } }