类调用的4种方法(Facade)
1.传统的new Request
2.静态代理:think\facade\Request;
3.依赖注入:Request $request;
4.父类Controller中的属性$request : this->request->get();
注:
- 正常情况下,控制器不依赖父类Controller.php
- 推荐继承父类,可以很方便的使用父类中的封装好的一些方法和属性
- Controller.php 没有静态代理
- 控制器中的输出,字符串全部用return返回,不要用echo
- 如果输出的是复杂类型,我们可以用dump()函数
- 默认输出的格式为html,可以指定为其他格式:json
<?php
//导入请求对象的静态代理
//use think\Facade\Request;
//引用动态类
use think\Request;
namespace app\index\controller;
use think\Container;
use function MongoDB\BSON\toJSON;
class Demo3 extends Container
{
public function test()
{
// dump(Request::get());
// $request = new Request();
// dump($this->request->get());
//以Json方式输出
return json_encode($this->request->get());
// return 'hello php.cn ';
}
}