內置的HTTP路由
創新互聯專注于博州網站建設服務及定制,我們擁有豐富的企業做網站經驗。 熱誠為您提供博州營銷型網站建設,博州網站制作、博州網頁設計、博州網站官網定制、重慶小程序開發服務,打造博州網絡公司原創品牌,更為您提供博州網站排名全網營銷落地服務。路由把每一個引進來的HTTP請求對應到相應的Action去。
HTTP請求被認為是MVC框架下的一個事件,這一事件包含兩部分主要信息:
(1)請求路徑,包括query String
(2)HTTP方法,如get,post等
路由被定義在經過編譯的conf/routes中,因此你能在瀏覽器上直接看到報錯信息。
conf/routes中每一行一般由HTTP方法和相應URI組成:
GET /clients/:id controllers.Clients.show(id: Long)
也可加上評論:
# Display a client.
GET /clients/:id controllers.Clients.show(id: Long)
以下這個不太懂,請高人指教:
-> /api api.MyRouter
HTTP方法
HTTP方法包括get、post、patch、put、delete、head等。
URI PATTERN
URI PATTERN定義了routes的路徑,部分請求路徑可以是動態的。
(1)靜態路徑:
準確匹配請求路徑,可以定義如下:
GET /clients/all controllers.Clients.list()
(2)動態的部分:
如果要通過ID來搜索路徑,需要用動態指定的方式。
GET /clients/:id controllers.Clients.show(id: Long)
The default matching strategy for a dynamic part is defined by the regular expression [^/]+
, meaning that any dynamic part defined as :id
will match exactly one URI path segment.
通過*id可以來匹配多個URI,如下:
GET /files/*name controllers.Application.download(name)
以上的router,對于GET /files/p_w_picpaths/logo.png這樣的請求,name會匹配
p_w_picpaths/logo.png。
用自定義正則表達式動態路由
用$id<regex>可以來自定義正則表達式
GET /items/$id<[0-9]+> controllers.Items.show(id: Long)
the parameter is not decoded by the router or encoded by the reverse router. You’re responsible for validating the input to make sure it makes sense in that context.
controller action method
如果方法沒有參數,可以如下定義:
GET / controllers.Application.homePage()
如果有參數,則從請求URI中尋找參數:
# Extract the page parameter from the path.
GET /:page controllers.Application.show(page)
或者如下:
# Extract the page parameter from the query string.
GET / controllers.Application.show(page)
show方法的定義如下:
def show(page: String) = Action {
loadContentFromDatabase(page).map { htmlContent =>
Ok(htmlContent).as("text/html")
}.getOrElse(NotFound)
}
如果要把入參轉換成scala的數據類型,就要有下面的router,并且實現相應的方法:
GET /clients/:id controllers.Clients.show(id: Long)
def show(id: Long) = Action {
Client.findById(id).map { client =>
Ok(views.html.Clients.display(client))
}.getOrElse(NotFound)
}
固定值的參數:
# Extract the page parameter from the path, or fix the value for /
GET / controllers.Application.show(page = "home")
GET /:page controllers.Application.show(page)
默認值方式:
# Pagination links, like /clients?page=3
GET /clients controllers.Clients.list(page: Int ?= 1)
Option類型,不需要在每一次傳參時都傳入:
# The version parameter is optional. E.g. /api/list-all?version=3.0
GET /api/list-all controllers.Api.list(version: Option[String])
注:多個routes沖突時,使用第一個。
play.api.mvc.Call中提供了HTTP回調,提供了HTTP和URI方法,它用如下方法創建控制器:
package controllers
import play.api._
import play.api.mvc._
class Application extends Controller {
def hello(name: String) = Action {
Ok("Hello " + name + "!")
}
}
如果在conf/routes中有如下定義:
# Hello action
GET /hello/:name controllers.Application.hello(name)
那么可以通過controllers.routes.Application實現控制反轉:
// Redirect to /hello/Bob
def helloBob = Action {
Redirect(routes.Application.hello("Bob"))
}
默認控制器:
# Redirects to https://www.playframework.com/ with 303 See Other
GET /about controllers.Default.redirect(to = "https://www.playframework.com/")
# Responds with 404 Not Found
GET /orders controllers.Default.notFound
# Responds with 500 Internal Server Error
GET /clients controllers.Default.error
# Responds with 501 Not Implemented
GET /posts controllers.Default.todo
另外有需要云服務器可以了解下創新互聯scvps.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業上云的綜合解決方案,具有“安全穩定、簡單易用、服務可用性高、性價比高”等特點與優勢,專為企業上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。
網頁標題:Scala下Play框架學習筆記(HttpRouting)-創新互聯
文章地址:http://vcdvsql.cn/article0/dscooo.html
成都網站建設公司_創新互聯,為您提供小程序開發、面包屑導航、網頁設計公司、電子商務、軟件開發、網站設計公司
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯