Beim Anmelden ist auf der Seite ein Fehler aufgetreten. Wie kann ich ihn beheben?
星河4p2017-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(); } }
$this->isLogin();
isLogin()这个方法不在你的类里面;你要在类里面新增一个isLogin();$this->是用来获取当前对象的非静态属性用的例如:
那就肯定是这个方法有问题了,isLogin()
加了下面这一句,页面就出错了
$this->isLogin(); //判断用户是否登录