为了账号安全,请及时绑定邮箱和手机立即绑定

__Contruct()错误

<?php
namespace app\index\controller;

use think\Controller;
use think\Request;

class Index extends Controller
{
    public function __construct(){
        config('before', 'beforeAction');
    }
    public function index(Request $request)
    {
        return $this->fetch();
    }
}

上面的代码,直接跑会报一个‘

Call to a member function fetch() on a non-object

’的错误,但是删除掉construct函数后就没问题了,请问这个是怎么没一个情况?

正在回答

1 回答

你需要添加一行  parent::__construct();

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
快速入门ThinkPHP 5.0--基础篇
  • 参与学习       58656    人
  • 解答问题       495    个

ThinkPHP5已发布多时,想了解ThinkPHP5的新特性吗?老司机带你马上出发~

进入课程

__Contruct()错误

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信