a) 將網頁範本放在View檢視中並依名稱分別建立資料夾,分模組建立
例如:首頁為index.html,新聞模組有addNews.html,allNews.html,(以下內容都會採用此例)。我們可以建立這樣的目錄結構:
|-View | |-Index | | |-index.html | |-News | | |-add.html(addNews.html) | | |-all.html(allNews.html)
b) Controller則是建立這樣的目錄結構
|-Controller | |-IndexController.class.php | |-NewsController.class.php
c) 目錄結構有了,那我們就開始敲程式碼了。
IndexController.class.php <?php namespace Home\Controller;//命名空间 use Think\Controller;//使用Think目录中的核心函数 class IndexController extends Controller{ public function index(){ $this->display();//加载模板文件,让模板呈现在浏览器中 } } ?>
NewsController.class.php <?php namespace Home\Controller; use Think\Controller; class NewsController extends Controller{ public function add(){ $this->display(); } public function all(){ $this->display(); } } ?>
好了,這樣的話,這幾個頁面就可以在瀏覽器中顯示了。
d) 認識網址列
1、localhost/app/ Home 模块下的Index控制器index⽅法 2、localhost/app/index.php/Home/Index/lists: Home模块下的Index控制器lists方法 3、localhost/app/index.php/Home/News/add Home模块下的News控制器add方法 4、localhost/app/index.php/Home/News/edit/id/2
以上就是【ThinkPHP系列篇】ThinkPHP框架讓網頁能夠在瀏覽器中存取(二)的內容,更多相關內容請關注PHP中文網(www.php.cn)!