From ba9c63baa380667cc6e38092ce8610fe3110df98 Mon Sep 17 00:00:00 2001 From: topnuomi <1130395124@qq.com> Date: Mon, 8 Jul 2019 16:07:59 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E4=BA=86Request=E7=B1=BB?= =?UTF-8?q?=E3=80=81=E8=B7=AF=E7=94=B1=E4=BD=9C=E7=94=A8=E5=8D=95=E4=B8=80?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + application/home/config/config.php | 2 +- application/home/controller/Index.php | 20 +- application/home/view/Index/index.html | 4 +- application/home/view/Index/testPage.html | 13 + framework/Framework.php | 2 +- framework/blocks/Json.php | 19 ++ framework/decorator/InitDecorator.php | 5 +- framework/decorator/ReturnDecorator.php | 41 --- framework/decorator/StringDecorator.php | 31 -- framework/library/App.php | 52 ++-- framework/library/Config.php | 4 +- framework/library/Router.php | 108 ++----- framework/library/View.php | 3 +- framework/library/exception/BaseException.php | 1 - framework/library/functions/functions.php | 65 +++- framework/library/http/Request.php | 286 +++++++++++++----- framework/library/http/Response.php | 77 +++++ .../library/http/response/ResponseData.php | 71 +++++ framework/library/route/Pathinfo.php | 12 +- framework/library/route/ifs/RouteIfs.php | 2 +- .../library/template/driver/tags/Tags.php | 2 +- public/index.php | 2 - .../home/8b6903ea105d9a35bb03114244786eb8.php | 4 +- .../home/db8e1fab73a5242fff69f47577172ec2.php | 13 + 25 files changed, 546 insertions(+), 294 deletions(-) create mode 100644 application/home/view/Index/testPage.html create mode 100644 framework/blocks/Json.php delete mode 100644 framework/decorator/ReturnDecorator.php delete mode 100644 framework/decorator/StringDecorator.php create mode 100644 framework/library/http/Response.php create mode 100644 framework/library/http/response/ResponseData.php create mode 100644 public/runtime/compile/application/home/db8e1fab73a5242fff69f47577172ec2.php diff --git a/README.md b/README.md index e69de29..4e94601 100644 --- a/README.md +++ b/README.md @@ -0,0 +1 @@ +### TOP-Framework diff --git a/application/home/config/config.php b/application/home/config/config.php index 019d4be..60da52b 100644 --- a/application/home/config/config.php +++ b/application/home/config/config.php @@ -22,7 +22,7 @@ return [ 'view' => [ 'engine' => 'Top', 'ext' => 'html', - 'dir' => '../application/home/view/', + 'dir' => APP_PATH . 'home/view/', 'cacheDir' => './runtime/cache/application/home/', 'compileDir' => './runtime/compile/application/home/', 'left' => '{', diff --git a/application/home/controller/Index.php b/application/home/controller/Index.php index d404d45..273a552 100644 --- a/application/home/controller/Index.php +++ b/application/home/controller/Index.php @@ -2,23 +2,25 @@ namespace app\home\controller; -use app\home\model\Users; +use top\blocks\Json; class Index extends Common { + use Json; public function index() { - $model = model(Users::class); - $lists = $model->all; - return [ - 'lists' => $lists - ]; + return request()->module(); } public function hello() { - // return $this->fetch(); - return true; + return 'hello'; } -} \ No newline at end of file + + public function testPage() + { + // return $this->fetch(); + return []; + } +} diff --git a/application/home/view/Index/index.html b/application/home/view/Index/index.html index 9d0e3de..4769a07 100644 --- a/application/home/view/Index/index.html +++ b/application/home/view/Index/index.html @@ -3,12 +3,12 @@