报错Class 'think\Facade\Request' not found
2018-11-27 16:16:04
0
1
2642

<?php

namespace app\index\controller;

use app\common\controller\Base;

use app\common\model\Article;

use app\common\model\Cate;

use think\Facade\Request;


$cateId = Request::param('cate_id');

    // dump($cateId);die;

    if(isset($cateId)){

    $res = Cate::get($cateId);


    $this -> view -> assign('cateName',$res->name);

    }

报错:Class 'think\Facade\Request' not found

Class 'think\Facade\Request' not found

Class 'think\Facade\Request' not found

Class 'think\Facade\Request' not found


reply all(1)
Peter-Zhu

Isn’t it clear about such a prompt?

Go to think/facade/ and check if there is such a request class

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template