为什么Scala查询返回为单位?

时间:2012-04-09 04:09:57

标签: scala

对从多个位置提取的某些数据运行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("")
    }

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

2 个答案:

答案 0 :(得分: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

答案 1 :(得分:0)

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

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

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

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

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