11

我目前正在学习scala和mongodb并使用该剧!框架,所以我在思考问题时犯了各种各样的错误。目前我有一个 scala 对象,它通过 casbah 返回从 mongodb 查询返回的数据库对象列表,如下所示;

object Alerts  {

   def list() : List[DBObject]= {

        val collection = MongoDatabase.collection;
        val query = MongoDBObject.empty
        val order = MongoDBObject("Issue Time:" -> -1)
        val list = collection.find(query).sort(order).toList
        list
   }

... }

在我的代码的其他地方,我希望在 Json 中输出对象列表 - 所以我有;

  val currentAlerts = Alerts.list()

我想写的是这样的;

  val resultingJson = currentAlerts.toJson 

但是当我这样做时,我可以理解地得到以下错误;

  value toJson is not a member of List[com.mongodb.casbah.Imports.DBObject]

我的问题是-将 com.mongodb.casbah.Imports.DBObject 列表转换为 Json 以进行输出的正确方法是什么?

编辑:

为了清楚起见,我真正想做的是相当于

val listInJson = collection.find(query).sort(order).toJson

就像我可以写一样

val listAsString = collection.find(query).sort(order).toString
4

3 回答 3

8

你可以试试

com.mongodb.util.JSON.serialize(Alerts.list())

这应该返回一个带有警报的 JSON 数组

于 2013-03-19T22:32:30.413 回答
5

我有以下

def service() = Action {
 // connect
 val collection = MongoConnection()("someDB")("someCollection")
 // simply convert the result to a string, separating items with a comma
 // this string goes inside an "array", and it's ready to hit the road
 val json = "[%s]".format(
  collection.find(someQuery).toList.mkString(",")
 )

 Ok(json).as("application/json")

}

于 2012-08-30T17:34:32.743 回答
4

我有一个可怕的解决方案如下;

val currentAlerts = Alerts.list()

var jsonList : List[JsValue] = Nil

// Iterate over the DBObjects and use to String to convert each to JSON
// and then parse that back into the list so we can use toJson on it later.
// MAD, but works.

for (dbObject <- currentAlerts) {
    jsonList ::=  Json.parse(dbObject.toString)
}

val result = Json.toJson(jsonList)
Ok(result).as("application/json")

肯定有更好的方法吗?

于 2012-08-16T14:32:17.323 回答