主頁 > 知識庫 > yii2的restful api路由實(shí)例詳解

yii2的restful api路由實(shí)例詳解

熱門標(biāo)簽:外呼系統(tǒng)能給企業(yè)帶來哪些好處 百度地圖標(biāo)注偏差 開發(fā)地圖標(biāo)注類網(wǎng)站 400電話蘭州申請請 余姚電話機(jī)器人 咸寧銷售電銷機(jī)器人系統(tǒng) 百度地圖怎樣標(biāo)注圖標(biāo) 電銷機(jī)器人問門薩維品牌my 廣東廣州在怎么申請400電話

yii\rest\UrlRule

使用yii\rest\UrlRule來自動映射控制器的 restful 路由,簡單快捷,缺點(diǎn)是必須得按規(guī)定好的方法名去寫業(yè)務(wù)。

映射的規(guī)則如下,當(dāng)然,你可以修改源碼為你的習(xí)慣:

public $patterns = [
  'PUT,PATCH {id}' => 'update',
  'DELETE {id}' => 'delete',
  'GET,HEAD {id}' => 'view',
  'POST' => 'create',
  'GET,HEAD' => 'index',
  '{id}' => 'options',
  '' => 'options',
];

除了被限制了HTTP動詞對應(yīng)的方法名外,其他都很好用,比如pluralize是多么的優(yōu)雅啊,可以自動解析單詞的復(fù)數(shù),laravel的話要一個個的去寫,反而有些不方便了

'urlManager'  => [
  'enablePrettyUrl'   => true,
  'showScriptName'   => false,
  'enableStrictParsing' => true,
  'rules'        => [
    [
      'class'   => 'yii\rest\UrlRule',
      'controller' => [
        'v1/user',
        'v1/news',
        'routeAlias' => 'v1/box'
      ],
      'pluralize' => true
    ],
  ]
]

自定義路由

注意我路由里很刻意的用了復(fù)數(shù)模式,但很雞肋,因為一些單詞的復(fù)數(shù)并不是簡單的加個 s 就可以了。

'urlManager'  => [
  'enablePrettyUrl'   => true,
  'showScriptName'   => false,
  'enableStrictParsing' => true,
  'rules'        => [
    // 利用 module 做個版本號也是可以的
    'GET module:(v1|v2)>/controller:\w+>s'         => 'module>/controller>/index',
    'GET module:(v1|v2)>/controller:\w+>s/uid:\d+>'    => 'module>/controller>/view',
    'POST module:(v1|v2)>/controller:\w+>s'        => 'module>/controller>/create',
    'PUT,PATCH module:(v1|v2)>/controller:\w+>s/uid:\d+>' => 'module>/controller>/update',
    'DELETE module:(v1|v2)>/controller:\w+>s/uid:\d+>'  => 'module>/controller>/delete',
    'OPTIONS module:(v1|v2)>/controller:\w+>s'       => 'module>/controller>/options',

    'controller:\w+>/action:\w+>'       => 'controller>/action>',// normal
    'module:\w+>/controller:\w+>/action:\w+>' => 'module>/controller>/action>',// module
    '/'                     => 'site/default',// default route
  ]
]

當(dāng)然,這種高度動態(tài)的路由也可以寫的像laravel一樣半靜態(tài)。

'GET v1/children'         => 'v1/child/index',
'GET v1/children/uid:\d+>'    => 'v1/child/view',
'POST v1/children'        => 'v1/child/create',
'PUT,PATCH v1/children/uid:\d+>' => 'v1/child/update',
'DELETE v1/children/uid:\d+>'  => 'v1/child/delete',
'OPTIONS v1/children'       => 'v1/child/options',

如同laravel的如下

Route::get("/v1/children", "ChildController@index");
Route::post("/v1/children", "ChildController@create");
Route::put("/v1/children/{uid}", "ChildController@update");
Route::patch("/v1/children/{uid}", "ChildController@update");
Route::delete("/v1/children/{uid}", "ChildController@delete");
Route::options("/v1/children", "ChildController@options");

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • Laravel中重寫資源路由自定義URL的實(shí)現(xiàn)方法
  • 淺談Laravel POST,PUT,PATCH 路由的區(qū)別

標(biāo)簽:銅陵 十堰 衡陽 臨沂 巴彥淖爾 麗江 鷹潭 重慶

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《yii2的restful api路由實(shí)例詳解》,本文關(guān)鍵詞  yii2,的,restful,api,路由,實(shí)例,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《yii2的restful api路由實(shí)例詳解》相關(guān)的同類信息!
  • 本頁收集關(guān)于yii2的restful api路由實(shí)例詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章