Beim Anmelden ist auf der Seite ein Fehler aufgetreten. Wie kann ich ihn beheben?
星河4p
星河4p 2017-08-16 09:08:58
0
4
1302

<?php
namespace appindexcontroller;
use appindexcontrollerBase;
class Index erweitert Base
{
public function index()
{
$this->isLogin(); // Bestimmen, ob der Benutzer angemeldet ist
return $ this-> ;view->fetch();
}
}

星河4p
星河4p

嗯哼

Antworte allen(3)
糊涂斌

$this->isLogin();

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

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


  • Antwort 回答不对
    鸢尾花 Autor 2018-01-03 18:57:03
ringa_lee

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

越努力,越幸运

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

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

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage