gpt4 book ai didi

mongodb - Casbah Scala MongoDB 驱动程序 - 从 DBObject 获取数据

转载 作者:IT老高 更新时间:2023-10-28 13:19:40 26 4
gpt4 key购买 nike

好的,这是关于 Casbah 和 MongoDB 基础知识的另一个问题。从数据库中检索 DBObject 后,如何从中提取某些数据?我知道有 DBObject.get() 方法,它返回 java.lang.Object。我是否必须这样做,然后将数据转换为所需的类型?我不确定这是不是最好的方法...有人可以推荐如何更好地做到这一点吗?

更新:

最后我采用了手动处理所有东西的方式。由于案例类的限制,我没有使用 Salat,因为不建议将案例类用于生 child ,这需要重新安排架构。但是,该答案被标记为最佳答案,因为它适用于大多数情况,并且这里没有其他更通用的答案。

最佳答案

您可以使用 MongoDBObject 的 as 方法来获取值并在一次调用中进行转换:

val coll = MongoConnection()(dbName)(collName)
val query = MongoDBObject("title" -> "some value")
val obj = coll findOne query

val someStr = obj.as[String]("title")
val someInt = obj.as[Int]("count")
// and so on..

请注意,如果找不到给定的键,as 会引发异常。您可以使用 getAs 它为您提供 Option[A]:

obj.getAs[String]("title") match {
case Some(someStr) => ...
case None => ...
}

提取列表有点复杂:

val myListOfInts =
(List() ++ obj("nums").asInstanceOf[BasicDBList]) map { _.asInstanceOf[Int] }

我写了一个helper,让casbah的使用更加简洁,可能会有帮助,所以附上:

package utils

import com.mongodb.casbah.Imports._

class DBObjectHelper(underlying: DBObject) {

def asString(key: String) = underlying.as[String](key)

def asDouble(key: String) = underlying.as[Double](key)

def asInt(key: String) = underlying.as[Int](key)

def asList[A](key: String) =
(List() ++ underlying(key).asInstanceOf[BasicDBList]) map { _.asInstanceOf[A] }

def asDoubleList(key: String) = asList[Double](key)
}

object DBObjectHelper {

implicit def toDBObjectHelper(obj: DBObject) = new DBObjectHelper(obj)

}

你可以像这样使用助手:

val someStr = obj asString "title"
val someInt = obj asInt "count"
val myDoubleList = obj asDoubleList "coords"

希望对你有帮助。

关于mongodb - Casbah Scala MongoDB 驱动程序 - 从 DBObject 获取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10470166/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com