1. 程式人生 > >thinkphp報錯Call to undefined method appindexcontrollerIndex::fetch()

thinkphp報錯Call to undefined method appindexcontrollerIndex::fetch()

fetch 新手 fin 需要 color app span style div

因為要寫一個系統,所以又重新下載了thinkphp,然後安裝了一下。回憶起這個問題很容易讓新手朋友費解。會出現如下報錯:Call to undefined method app\index\controller\Index::fetch()

其實就是沒找到fetch屬性,其實默認是有這個屬性的。只是你沒有使用罷了。

需要先使用Controller然後繼承。 如下所示:

<?phpnamespace app\index\controller;use think\Controller;class Index extends Controller{ public function index() { return $this->fetch(); }}

thinkphp報錯Call to undefined method app\index\controller\Index::fetch()