12345678910111213141516171819202122232425262728 |
- <?php
- declare(strict_types=1);
- namespace App\Controller;
- use Hyperf\HttpServer\Annotation\Controller;
- use Hyperf\HttpServer\Annotation\GetMapping;
- use Hyperf\View\RenderInterface;
- //#[Controller(prefix: "page")]
- class PageController
- {
- // #[GetMapping(path: "home")]
- public function index(RenderInterface $render)
- {
- var_dump("======###");
- return $render->render('index', [
- 'title' => '页面标题',
- 'shared_data' => [
- 'app_name' => 'My App',
- 'current_year' => date('Y')
- ],
- // 其他页面特定变量...
- ]);
- }
- }
|