按着老师写的,可是总是报错,说category不存在
来源:5-1 添加分类

慕粉3281308
2017-04-08
总是提示category控制器不存在
写回答
4回答
-
class category 修改为class Category
012017-04-11 -
singwa
2017-04-08
你代码截图我看看
00 -
杰克不接客
2017-09-03
这个坑我也踩了,index中的JS方法中,category要区分大小写!
00 -
慕粉3281308
提问者
2017-04-11
<?php
namespace app\admin\controller;
use think\Controller;
class category extends Controller
{
//定位到首页
public function index(){
return $this->fetch();
}
//定位到添加页
public function add(){
return $this->fetch();
}
}
012017-09-03
相似问题