摘要: 响应输出 路由直接返回 添加路由响应 route/app.php Route::get('hello/:name', function ($name) { return 'Hello,' . $name . '!'; }); 测试与结果 http://127.0.0.1:8000/hello/huy 阅读全文
posted @ 2021-10-17 12:34 胡勇健 阅读(322) 评论(0) 推荐(0)
摘要: 请求对象 构造方法注入 控制器 app/controller/Index.php <?php namespace app\controller; use think\Request; class Index { protected $request; public function __constr 阅读全文
posted @ 2021-10-17 11:00 胡勇健 阅读(376) 评论(0) 推荐(0)