gpt4 book ai didi

javascript - Mongoose 索引html文本?

转载 作者:行者123 更新时间:2023-12-05 00:29:47 25 4
gpt4 key购买 nike

我有一个带有字段 html 的文档。 html 字段存储真实的 html。

schema: {
html: String
}
doc: {
"html" : "<p>I am html<p>"
}
我想索引 html 字段,当我搜索“我是 html”时,它应该返回该文档。
有没有办法只使用该 html 标记内的文本来搜索该文档。

最佳答案

您可以使用$regex运算符(operator):

db.collection.find({
"html": {
"$regex": "I am HTML"
}
})
Working example

关于javascript - Mongoose 索引html文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70389749/

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