我正在尝试创建一个函数,它从 Mongo 集合中获取所有文档并查询它们以声明的结构。为了实现这一点,我设置了类型接口函数的参数,以便它可以使用两个结构。这是我的代码:
在包实体中:
type Project struct {
Title string
Position string
....
}
type Projects struct {
Projects []Project
}
在当前包中:
var docs entities.Projects
var doc entities.Project
//doc represents a document from Mongo Collection
//docs represents an array of documents, each element is a document
//collection has type *mongo.Collection and points to the desired collection on MongoDB.
createQuery(&doc, &docs, collection)
func createQuery(doc interface{}, docs interface{}, c *mongo.Collection) {
documents := reflect.ValueOf(docs).Elem()
document := reflect.ValueOf(doc)
cur, err := c.Find(context.Background(), bson.D{{}})
if err != nil {
log.Fatal(err)
}
for cur.Next(context.Background()) {
err = cur.Decode(document.Interface())
if err != nil {
log.Fatal(err)
}
//Error is thrown here
documents.Set(reflect.Append(documents, document))
fmt.Println(doc)
}
if err := cur.Err(); err != nil {
log.Fatal(err)
}
if err != nil {
fmt.Printf("oh shit this is the error %s \n", err)
}
cur.Close(context.Background())
fmt.Printf("documents: %+v\n", documents.Interface())
fmt.Printf("document: %+v\n", document.CanSet())
}
---ERROR OUTPUT---
panic: reflect: call of reflect.Append on struct Value
我能够使用文档变量将数据设置为 doc,尽管在执行 document.CanSet() 时为 false(因此它甚至可能不起作用)。当我尝试将文档附加到文档界面时,程序就会中断。
白衣染霜花
相关分类