fuelphp 路由
路由映射請(qǐng)求一個(gè)指向特定控制器方法的 uri。在本章中,我們將詳細(xì)討論 fuelphp 中 路由的概念。
配置
路由配置文件位于 fuel/app/config/routes.php。默認(rèn)的 routes.php 文件定義如下:
return array ( '_root_' =--> 'welcome/index', // the default route '_404_' => 'welcome/404', // the main 404 route 'hello(/:name)?' => array('welcome/hello', 'name' => 'hello'), );
這里, _root_ 是預(yù)定義的默認(rèn)路由,當(dāng)應(yīng)用程序請(qǐng)求根路徑時(shí)會(huì)匹配,/e.g. http://localhost:8080/。 _root_ 的值是控制器和匹配時(shí)要解決的動(dòng)作。 welcome/index 解析為 controller_welcome 控制器和 action_index 動(dòng)作方法。同樣,我們有以下保留路由。
- root-未指定 uri 時(shí)的默認(rèn)路由。
- 403-httpnoaccessexc 時(shí)拋出找到了。
- 404-找不到頁(yè)面時(shí)返回。
- 500-當(dāng)發(fā)現(xiàn) httpservererrorexception 時(shí)拋出。
簡(jiǎn)單路由
將路由與請(qǐng)求 uri 進(jìn)行比較。如果找到匹配項(xiàng),則將請(qǐng)求路由到 uri。簡(jiǎn)單路由描述如下,
return array ( 'about' => 'site/about', 'login' => 'employee/login', );
這里, about 匹配 http://localhost:8080/about 并解析控制器、controller_site 和操作方法 action_about
login 匹配 http://localhost:8080/login 并解析控制器 controller_login 和操作方法 action_login
高級(jí)路由
您可以在路由中包含任何正則表達(dá)式。 fuel 支持以下高級(jí)路由功能:
- :any-這匹配 uri 中從該點(diǎn)開始的任何內(nèi)容,不匹配"無(wú)"
- :everything-像:any,但也匹配"nothing"
- :segment-這僅匹配 uri 中的 1 個(gè)段,但該段可以是任何內(nèi)容
- :num-匹配任何數(shù)字
- :alpha-匹配任何字母字符,包括 utf-8
- :alnum-匹配任何字母數(shù)字字符,包括 utf-8
例如,以下路由匹配 uri http://localhost:8080/hello/fuelphp 并解析控制器、 controller_welcome 和操作 action_hello
'hello(/:name)?' => array('welcome/hello', 'name' => 'hello'),
controller_welcome中對(duì)應(yīng)的action方法如下,
public function action_hello() { $this->name = request::active()->param('name', 'world'); $message = "hello, " . $this->name; echo $message; }
這里,我們使用 request 類從 url 中獲取 name 參數(shù)。如果未找到名稱,則我們使用 world 作為默認(rèn)值。我們將在 request 和 response 章節(jié)中學(xué)習(xí) request 類。
結(jié)果
http 方法操作
fuelphp 支持路由以匹配 http 方法前綴的操作。以下是基本語(yǔ)法。
class controller_employee extends controller { public function get_index() { // called when the http method is get. } public function post_index(){ // called when the http method is post. } }
我們可以根據(jù)配置文件中的 http 動(dòng)詞將您的 url 路由到控制器和操作,如下所示。
return array ( // routes get /employee to /employee/all and post /employee to /employee/create ‘employee’ => array(array('get', new route(‘employee/all')), array('post', new route(‘employee/create'))), );
- CodeIgniter 基本概念
- CodeIgniter 添加JS和CSS
- CakePHP 查看事件
- CakePHP 查看記錄
- CakePHP 日志記錄
- CakePHP 驗(yàn)證
- CakePHP 分頁(yè)
- FuelPHP 教程
- FuelPHP 應(yīng)用程序
- FuelPHP 配置
- FuelPHP 路由
- FuelPHP 高級(jí)表單編程
- FuelPHP 工作示例
- Laravel 路由
- Laravel 中間件
- Laravel 命名空間
- Laravel 使用數(shù)據(jù)庫(kù)
- Laravel Ajax
- Laravel 錯(cuò)誤處理
- Laravel Facades