mongodb casbah 和列表处理

发布于 2024-10-13 11:51:18 字数 872 浏览 0 评论 0原文

我在编写这个函数时遇到问题,该函数接受一个字符串并返回与其关联的字符串列表。

(我期待 mongodb 中出现类似 {_id: ...., hash: "abcde", n: ["a","b","ijojoij"]} 的条目)

def findByHash(hash: Hash) = {
        val dbobj = mongoColl.findOne(MongoDBObject("hash" -> hash.hashStr)) 
        val n = dbobj match {
            case Some(doc: com.mongodb.casbah.Imports.DBObject) => {
                doc("n") match {
                    case Some(n: com.mongodb.casbah.Imports.DBObject) => {
                        Some(List[String]() ++ n map { x => x.asInstanceOf[String] })
                    }
                    case _ => {
                        None  // hash match but no n in object
                    }
                }
            }
            case _ => {
                None  // no hash match
            }
        }
        n
}

代码有什么问题吗?你知道如何纠正吗?

I am having problems writing this function, which takes a string and returns a list of strings associated to it.

(I'm expecting entries like {_id: ...., hash: "abcde", n: ["a","b","ijojoij"]} in mongodb)

def findByHash(hash: Hash) = {
        val dbobj = mongoColl.findOne(MongoDBObject("hash" -> hash.hashStr)) 
        val n = dbobj match {
            case Some(doc: com.mongodb.casbah.Imports.DBObject) => {
                doc("n") match {
                    case Some(n: com.mongodb.casbah.Imports.DBObject) => {
                        Some(List[String]() ++ n map { x => x.asInstanceOf[String] })
                    }
                    case _ => {
                        None  // hash match but no n in object
                    }
                }
            }
            case _ => {
                None  // no hash match
            }
        }
        n
}

Is there anything wrong with the code? Do you know how to correct it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

讽刺将军 2024-10-20 11:51:18

doc("n") 返回 AnyRef,因此您应该将其显式转换为 BasicDBList。

val n = doc("n").asInstanceOf[BasicDBList]
Some(List[String]() ++ n map { x => x.asInstanceOf[String] })

doc("n") returns AnyRef, so you should explicitly cast it to BasicDBList.

val n = doc("n").asInstanceOf[BasicDBList]
Some(List[String]() ++ n map { x => x.asInstanceOf[String] })
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文