検索

ホームページ  >  に質問  >  本文

ログイン時にページにエラーが表示されます。解決するにはどうすればよいですか?

<?php
namespace app\index\controller;
use app\index\controller\Base;
class Index extends Base
{
public functionindex()## #{
$ this-&gt; islogin(); //ユーザーが
にログインしているかどうかを決定します。

星河4p星河4p2697日前1326

全員に返信(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
  • キャンセル返事