码迷,mamicode.com
首页 > 移动开发 > 详细

thinkphp报错Call to undefined method app\index\controller\Index::fetch()

时间:2019-01-27 12:59:06      阅读:2820      评论:0      收藏:0      [点我收藏+]

标签:func   str   使用   没有   span   继承   app   efi   end   

因为要写一个系统,所以又重新下载了thinkphp,然后安装了一下。回忆起这个问题很容易让新手朋友费解。会出现如下报错:Call to undefined method app\index\controller\Index::fetch()

其实就是没找到fetch属性,其实默认是有这个属性的。只是你没有使用罢了。

需要先使用Controller然后继承。 如下所示:

<?php
namespace 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()

标签:func   str   使用   没有   span   继承   app   efi   end   

原文地址:https://www.cnblogs.com/nul1/p/10325940.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!