在Controller目录和app目录都不行,访问出错
#0 [0]Error in Index.php line 6
Class 'app\Adminba
<?php
namespace app\controller;
use app\Adminba
use think\facade\View;
class Index extends Adminba
{
public function index()
{
return view();
}
public function hello()
{
return 'hello,';
}
}
最佳答案