base.php
<?php
namespace app\index\controller;
use think\Controller;class Base extends Controller;
{
}
index.php
<?php
namespace app\index\controller;
use app\index\controller\Base;class Index extends Base
{
public function index()
{
);
}
}
還沒到模板分離這一步驟就出錯了,提示:
頁面錯誤,請稍後再試~
可以在設定檔config.php 把 app_debug和app_trace的false 改為 true 即可清楚的看到報錯內容
你這庫的fetch()沒有指出那個視圖啊!