thinkphp後臺首頁index用frameset時的注意事項

文件路徑:項目/admin/Lib/Action/IndexAction.class.php
<?php
  class IndexAction extends Action{
    public function index(){
      $this->display();
    }
    public function top(){
      $this->display();
    }
    public function left(){
      $this->display();
    }
    public function right(){
      $this->display();
    }
  }
?>


文件路徑:項目/admin/Tpl/default/Index
index.html
 
  <frameset rows="20%,*">

    <frame src="__URL__/top" name="top">

    <frameset cols="20%,*">
      <frame src="__URL__/left" name="left">
      <frame src="__URL__/right" name="right">
    </frameset>

  </frameset>


top.html

left.html

right.html

注意事項:

調用top.html,left.html,right.html的時候應該用路徑__URL__/來調用方法,而不能用__TMPL__/Index/來調用模板。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章