>  기사  >  백엔드 개발  >  thinkphp模版包含有关问题

thinkphp模版包含有关问题

WBOY
WBOY원래의
2016-06-13 13:28:22841검색

thinkphp模版包含问题
IndexAction.class.php控制器代码:

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
<?php class IndexAction extends Action{
    function index(){
        $this->display();

    }

}

?>


模版目录如下:
tpl目录
  default目录
  index目录
  index.html //index目录下面的index.html模版
  public目录
  header.html
  footer.html
我在index/index.html下面使用了分帧结构:
HTML code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
<frameset rows="50%,*">
    <frame src="__ROOT__/admin.php/Public/header">
    <frame src="__ROOT__/admin.php/Public/footer">    
</frameset>  

无论怎样都不能显示不了header.html和footer.html的内容啊,求解


------解决方案--------------------
对应 header 和 footer 的控制器代码呢?
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.