搜尋

首頁  >  問答  >  主體

效法TP5 Controller中 的$this->show()

class Controller{     # 控制器基底類別

##      public function show(){       # 載入檢視頁面 

   View ."/".ACTION.".php";

     }

}


#

RiVolRiVol2459 天前1423

全部回覆(2)我來回復

  • RiVol

    RiVol2018-03-07 00:29:34

    以上程式碼用了之後會導致Model層資料失效,所以修改了一下:

    將以下程式碼放入Model中:

    class Model{

    ## 載入檢視頁面 

    public function show(){

        return "./App/".PLATFORM."/View/".CONTROLLER."/".ACTION.". php";

    }

    }

    呼叫

    $ind = new IndexModel();


    ##################################### require $ind->show();#############

    回覆
    0
  • RiVol

    歡迎各位大神指正

    RiVol · 2018-03-07 00:30:18
  • 取消回覆