黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

FuelPHP 路由

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'))), 
);

下一節(jié):fuelphp 請(qǐng)求和響應(yīng)

fuelphp 教程

相關(guān)文章