這篇文章將為大家詳細(xì)講解有關(guān)thinkphp3.x如何實(shí)現(xiàn)自定義Action、Model及View,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)公司專注于劍閣網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供劍閣營銷型網(wǎng)站建設(shè),劍閣網(wǎng)站制作、劍閣網(wǎng)頁設(shè)計(jì)、劍閣網(wǎng)站官網(wǎng)定制、小程序定制開發(fā)服務(wù),打造劍閣網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供劍閣網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。具體如下:
1、在xmall/Lib/Action中創(chuàng)建文件TestAction.class.php
class TestAction extends Action{ function index(){ $this->display("test"); } }
2、在xmall/tpl下創(chuàng)建default文件夾,在default下創(chuàng)建Test文件夾,在Test下創(chuàng)建test.html模版文件;
3、執(zhí)行URL:http://localhost/xmall/index.php/Test/index就會(huì)出現(xiàn)test.html頁面的內(nèi)容
4、在操作過程中出現(xiàn)的錯(cuò)誤:
(1) URL中的Test的T要大寫;
(2) Display不需要提供文件的擴(kuò)展名,默認(rèn)為index
5、注意事項(xiàng):
(1) 為方便調(diào)試,應(yīng)在index.php入口文件中添加
define("APP_DEBUG",true);
(2) 好在配置文件(xmall/Conf/config.php)中指定默認(rèn)模版:'DEFAULT_THEME' => 'default'
6、在xmall/lib/Model下創(chuàng)建文件UserModel.class.php
class UserModel extends Model{ function test(){ return "123456"; } }
7、在xmall/Lib/Action/TestAction.class.php添加新方法
public function test(){ $m=D("User"); echo $m->test(); }
8、執(zhí)行URL:http://localhost/xmall/index.php/Index/test,頁面輸出123456
9、注:Model文件名要與model的名稱一直,并且在調(diào)用時(shí)區(qū)分大小寫;
在xmall/conf/config.php中添加'URL_CASE_INSENSITIVE' =>true,//URL不區(qū)分大小寫
關(guān)于“thinkphp3.x如何實(shí)現(xiàn)自定義Action、Model及View”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。