搜索

首页  >  问答  >  正文

判断是否登录时页面出错,怎么解决?

<?php
namespace app\index\controller;
use app\index\controller\Base;
class Index extends Base
{
   public function index()
   {
       $this->isLogin();   //判断用户是否登录
       return $this->view->fetch();
   }
}

星河4p星河4p2699 天前1332

全部回复(4)我来回复

  • 糊涂斌

    糊涂斌2017-08-30 11:25:53

    $this->isLogin();

    isLogin()这个方法不在你的类里面;你要在类里面新增一个isLogin();$this->是用来获取当前对象的非静态属性用的例如:

    class Index extends Base
    {
       public function index()
       {
           $this->isLogin();   //判断用户是否登录
           return $this->view->fetch();
       }
       public isLogin(){
           #code 判断用户是否登录
       }
    }


    回复
    0
  • 鸢尾花

    回答不对

    鸢尾花 · 2018-01-03 18:57:03
  • ringa_lee

    ringa_lee2017-08-16 13:34:21

    那就肯定是这个方法有问题了,isLogin()

    回复
    0
  • 星河4p

    星河4p2017-08-16 09:09:53

    加了下面这一句,页面就出错了

    $this->isLogin();   //判断用户是否登录

    回复
    0
  • 取消回复