码迷,mamicode.com
首页 > 其他好文 > 详细

implicit request ?

时间:2014-05-16 07:52:45      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   c   color   

不了解或不會Action在play framework很難再深入下去, 這是http request的點

以下這段代碼困擾我很久, 如今我才剛了解

Action { implicit request =>
  Ok("Got request [" + request + "]")
}

原文這麼說

It is often useful to mark the request parameter as implicit so it can be implicitly used by other APIs that need it:

如果request成了隱式參數的話, 有個好處, 如果我寫了一個方法然後可以隱式的傳入play.api.mvc.Request 這個類型的參數

def f(implicit request: play.api.mvc.Request) = {
     ...   
}

那我在調用 函式的時候就可以省略request參數了, 我想這只是種語法糖, 對代碼的結果不會有任何副作用.

 

implicit request ?,布布扣,bubuko.com

implicit request ?

标签:style   blog   class   code   c   color   

原文地址:http://www.cnblogs.com/jHenry/p/3726020.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!