今天就跟大家聊聊有關(guān)如何在thinkphp5.1框架中使用模板布局與模板繼承,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
創(chuàng)新互聯(lián)是一家專業(yè)提供新縣企業(yè)網(wǎng)站建設(shè),專注與網(wǎng)站制作、成都網(wǎng)站設(shè)計(jì)、html5、小程序制作等業(yè)務(wù)。10年已為新縣眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站制作公司優(yōu)惠進(jìn)行中。模板全局配置
配置文件template.php添加
//開啟全局模板布局 'layout_on' => true, //全局模板布局文件名 'layout_name' => 'layout'
模板布局
控制器中新建模板文件(application\index\controller\Demo\---test方法)
新建視圖文件(application\index\demo\test.html)
模板入口文件(application\index\view\index\index.html)
將公共模板頭部和尾部分別單獨(dú)放到一個(gè)html文件中(header.html、footer.html)【application\index\view\】
創(chuàng)建全局模板布局文件(layout.html)【application\index\view\】首先開啟布局layout_on = true
{include file="header"/} {__CONTENT__}//點(diǎn)位符,默認(rèn)CONTENT,可在template.php文件中配置 'layout_item' => '{__TEXT__}' {include file="footer"/}
模板繼承
新建公用模板目錄(application\index\view\common)
分離頭部的尾部(header.html、footer.html)
公共模板文件(父模板文件中只能用include和block標(biāo)簽)
{include file="common/header" /} {block name="body"} 主體 {/block} {block name="nav"} 導(dǎo)航 {/block} {include file="common/footer" /}
子模板文件(只能在block標(biāo)簽內(nèi))
{extend name="public/base" /} {block name="body"} {__block__}//繼承父模板中內(nèi)容模板
{/block} {block name="nav"}{/block}//清空父模板中內(nèi)容
看完上述內(nèi)容,你們對(duì)如何在thinkphp5.1框架中使用模板布局與模板繼承有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。