1

对从多个位置提取的某些数据运行 Squeryl 调用,但由于某种原因,它作为一个单元返回。如何让它作为 Iterable 返回?

下面是数据的拉取:

/**
   * gets a stream for a particular user
   */
  def getUserStream(userId:Long) {
    User.teamIds(userId).toList.map( (team) =>
      Stream.findByTeam(team,0,5).map( (stream) => 
        List(stream)
      ).flatten
    ).flatten.sortBy(_.id)
  }

然后输出数据,结果返回为Unit

Stream.getUserStream(userId) match {
      case results => {
        Ok( generate(results.map( (stream) => Map(
                "id" -> stream.id,
                "model" -> stream.model,
                "time" -> stream.time,
                "content" -> stream.content
                ))
            ) ).as("application/json")
      }
      case _ => Ok("")
    }

我最初的猜测是一个函数可以返回一个无,但它不会只返回一个空列表吗?

4

2 回答 2

6

def getUserStream(userId:Long)您在方法正文之前缺少等号。

def func(x: Int) { x + 1 } // This will return Unit
def func(x: Int) = { x + 1 } // This will return a Int
于 2012-04-09T04:17:56.833 回答
0

添加一些可能有用的东西,说def f(x: Int) {}

相当于说def f(x: Int): Unit = {}

如果您没有声明返回类型(例如def f(x: Int) = {}),则将从您的方法体中推断出该类型。

一种保证您返回某种类型的技术是显式声明它。当您想要导出具有特定签名的公共接口时,您会执行此操作。这很重要,因为如果您让类型推断器完成所有工作,它可能会暴露出比您想要的更通用的抽象。

def f(x: Int): List[User] = {} // This will not compile.

于 2012-04-09T06:08:31.603 回答