gpt4 book ai didi

mongodb - 在 mongodb-go-driver 中通过子字符串正则表达式查询查找条目

转载 作者:IT王子 更新时间:2023-10-29 01:40:34 27 4
gpt4 key购买 nike

我无法让官方 go mongo 驱动程序成功返回通过正则表达式查询查询的对象。

我已经知道如何通过 mongo shell 执行此操作并获得预期结果。在这个例子中,我得到了所有在“文本”字段中包含“他”的条目:

db.getCollection('test').find({"text": /he/})

与此相同:

db.getCollection('test').find({"text": {$regex: /he/, $options: ''}})

这是我当前无法运行的代码:

package main

import (
"context"
"fmt"
"time"

"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/bson/primitive"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
)

func main() {
ctx, cancel := context.WithTimeout(context.Background(), time.Duration(5*time.Second))
defer cancel()
client, err := mongo.NewClient(options.Client().ApplyURI("mongodb://localhost:27017"))
if err != nil {
fmt.Println(err)
return
}
err = client.Connect(ctx)
if err != nil {
fmt.Println(err)
return
}
db := client.Database("test")
coll := db.Collection("test")

filter := bson.D{{"text", primitive.Regex{Pattern: "/he/", Options: ""}}}
ctx, cancel = context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()

cur, err := coll.Find(ctx, filter)
if err != nil {
fmt.Println(err)
return
}

i := 0
for cur.Next(ctx) {
i = i + 1
}
fmt.Println("Found", i, "elements")
}

根据 example在官方的 mongo-go-driver 存储库中,这应该可以工作。

我当前在集合中的条目仅包含 2 个字段,id 字段和一个额外的文本字段。我目前有 3 个条目。看起来像这样:

{
"_id" : ObjectId("5c9cc7e9950198ceeefecbdd"),
"text" : "hello world"
},
{
"_id" : ObjectId("5c9cc7f6950198ceeefecbec"),
"text" : "hello"
},
{
"_id" : ObjectId("5c9cc804950198ceeefecbfa"),
"text" : "test world"
}

我对上面代码的预期结果应该是前 2 个条目。相反,我得到一个空光标。

有人知道我做错了什么吗?感谢您的帮助。

最佳答案

primitive.Regex 结构接受不带斜杠的 Pattern 值,因此它必须是:

filter := bson.D{{"text", primitive.Regex{Pattern: "he", Options: ""}}}

关于mongodb - 在 mongodb-go-driver 中通过子字符串正则表达式查询查找条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55398792/

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