其实就是没找到fetch属性,其实默认是有这个属性的。只是你没有使用罢了。
需要先使用Controller然后继承。 如下所示:
<?php
namespace app\index\controller;
use think\Controller;
class Index extends Controller
{
public function index()
{
return $this->fetch();
}
}
<?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()
本文地址:https://www.ys720.com/jiaocheng/3684.html
版权声明:本文采用[BY-NC-SA]协议进行授权,如无特别说明,转载请注明本文地址!