2

我想做一些类似的事情:

def findUser[ A ]( bp: BodyParser[ A ] )( id: Int )( f: User => Action[ A ] => Result )
def findProfile[ A ]( bp: BodyParser[ A ] )( id: Int )( f: Profile => Action[ A ] => Result )

两者(以及更多)可以互换使用,或者如下:

def create = findUser( parse.json ) { user => findProfile( parse.json ) { profile => implicit request => ...

我与 parse.json 相关的两个问题(我认为我可以通过将 JsValue 作为动作中的主体解析器传递并将其从签名中删除来解决。并且能够使用其中一个或多个动作随意...有什么想法吗?

谢谢!

更新

将答案移至回答评论...

4

1 回答 1

1

我能够使用以下签名使其工作。这是重构的主体解析器...您可以将这些辅助函数(bodyParser、findUser、findProfile)放在一个特征中并使用它们扩展控制器...您还可以完全从签名中删除主体解析器并传递解析。 json 在操作中并产生 findUser( id ) 而不是 findUser( )( id )。

val bodyParser = parse.json //(I had to include the entire path to it...)
def findUser[ A ]( bp: BodyParser[ A ] = bodyParser )( id: Int )( f: User => Request[ A ] => Result )

def find( id: Int ) =
    IsLoggedIn( ) {
        findUser( )( id ) {
        user =>
        findProfile( )( user.id ){
            profile =>
            request =>
                Ok( toJson( profile ) )
} } }

如果您知道更清洁的方法,请告诉我。

于 2012-04-10T18:17:34.207 回答