<?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
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
这样的提示,难道还不清楚吗?
到think/facade/下找一下是否有这个请求类