Thinkphp6知識點四 路由

2021-10-09 06:13:34 字數 1140 閱讀 5307

基礎路由

例如:

route::rule('new/:id','news/read');

//訪問

//會自動路由到

http://servername/news/read/id/5

指定型別的路由(get/post/put/delete/patch/*)

route::rule('new/:id', 'news/update', 'post');

route::rule('new/:id','news/read','get|post');

route::get('new/','news/read'); // 定義get請求路由規則

route::post('new/','news/update'); // 定義post請求路由規則

route::put('new/:id','news/update'); // 定義put請求路由規則

route::delete('new/:id','news/delete'); // 定義delete請求路由規則

route::any('new/:id','news/read'); // 所有請求都支援的路由規則

動態與靜態結合路由 (:變數或者《變數》都表示動態變數

route::rule('new/:year/:month/:day', 'news/read'); // 靜態位址和動態位址結合

route::rule('new///', 'news/read'); // 靜態位址和動態位址結合

可選變數路由[ ]包含起來後就表示該變數是路由匹配的可選變數)

route::get('blog/:year/[:month]','blog/archive');
額外引數路由(隱式傳值)

route::get('blog/:id','blog/read')

知識點彙總6

1.控制整合叫功能整合or應用整合,在業務邏輯上對應用系統進行整合 2.執行者和用例之間是關聯關係 3.順序圖從左到右 執行者角色,控制類,使用者介面,業務層,後台資料庫 4.類圖中屬性型別不能為空。5.網路層 各種網路,網路管理系統和雲計算平台 6.應用層 物聯網和使用者的介面,實現物聯網智慧型應...

ThinkPHP學習日記(知識點總結)

a thinkphp curd操作時條件判斷where的不同寫法 a where中直接寫入判定條件 data user where status 1 and name thinkphp find b where中使用array寫入判定條件 post postview where array post...

Linux知識點四

1.檢視資料夾屬性 ls ld test 2.資料夾的rwx x 可以cd進去 r x 可以cd進去並ls wx 可以cd進去並touch,rm自己的檔案,並且可以vi其他使用者的檔案 wt 可以cd進去並touch,rm自己的檔案 3.ls ld tmp drwxrwxrwt的許可權值是1777 ...