博客列表 >从控制器中调用Request类的四种方法

从控制器中调用Request类的四种方法

Pengsir
Pengsir原创
2018年01月22日 00:11:081097浏览

从控制器中调用Ruquest类的四种方法:

* 1.传统的new Request
* 2.静态代理:think\facade\Request
* 3.依赖注入:Request $request
* 4.父类Controller中的属性$request :$this->request

<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2018/1/21 0021
 * Time: 23:42
 */

namespace app\index\controller;

use think\Request;
use think\Controller;
class Tast extends Controller
{
    //方法一:传统的new Request方法
    public function test1()
    {
        $request = new Request();
        dump($request->get());
    }
}
<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2018/1/21 0021
 * Time: 23:42
 */

namespace app\index\controller;
use think\facade\Request;//导入请求对象的静态代理

class Tast
{

    public function test2()
    {
        //用静态代理:think\facade\Request
        dump( Request::get());
    }
}
<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2018/1/21 0021
 * Time: 23:42
 */

namespace app\index\controller;

use think\Request;

class Tast
{
        //用依赖注入
    public function test3(Request $request)
    {
        dump($request->get());
    }
}
<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2018/1/21 0021
 * Time: 23:42
 */

namespace app\index\controller;

use think\Controller;//导入think命名空间的Controller类
use think\Request;//导入think命名空间的Request类

class Tast extends Controller
{
//直接调用父类Controller中的属性:$request : $this->request
    public function test4()
    {
        dump($this->request->get());
    }
}

运行效果图:

从控制器调用Ruquest类.png

上一条:3-下一条:2-教学管理系统
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议