求教:tp5控制器引用模型报错,提示类未找到Class 'app\index\model\User' not found
设置中已开启控制器后缀。现在访问测试页面报错,说是模型的类未找到。http://127.0.0.1/user/add报错代码在最下方,请问是怎么回事?控制器文件appli...
设置中已开启控制器后缀。现在访问测试页面报错,说是模型的类未找到。http://127.0.0.1/user/add 报错代码在最下方,请问是怎么回事?控制器文件 application\index\controller\UserController.php<?phpnamespace app\index\controller;use app\index\model\User;class UserController{ // 新增用户数据 public function add() { $user = new User(); $user->nickname = '流年'; $user->email = 'thinkphp@qq.com'; $user->birthday = strtotime('1977-03-05'); if ($user->save()) { return '用户[ ' . $user->nickname . ':' . $user->id . ' ]新增成功'; } else { return $user->getError(); } }}?>模型文件:application\index\model\User.php<?namespace app\index\model;use think\Model;class User extends Model{ protected $name = 'user'; protected $connection = [ 'type' => 'mysql', 'hostname' => '127.0.0.1', 'database' => 'demo', 'username' => 'root', 'password' => 'root', 'hostport' => '3306', 'params' => [], 'charset' => 'utf8', 'prefix' => 'think_', 'debug' => true, ];}?>报错如下:[1] ErrorException in UserController.php line 10Class 'app\index\model\User' not found
上传的代码乱了,重新截图了如下,第一张是控制器,第二张是模型 展开
上传的代码乱了,重新截图了如下,第一张是控制器,第二张是模型 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询