gpt4 book ai didi

firebase - 如何返回文档索引名称值

转载 作者:数据小太阳 更新时间:2023-10-29 03:10:37 26 4
gpt4 key购买 nike

这是一个 GoLang、Firebase AdminSDK 问题。

此示例用于遍历 FireStore 数据库中的所有文档。

如何获取文档名称?

换句话说:如果集合名称是 JohnyCollection,并且 JohnyCollection 有 20 个文档调用 (Document1, Document2.... Document20), 如何在golang代码中获取文档名称?

//========================================

package main
import (
"context"
"fmt"
"log"
"firebase.google.com/go"
"google.golang.org/api/iterator"
"google.golang.org/api/option"
)
func check(e error) {
if e != nil {
panic(e)
}
}
func main() {
ctx := context.Background()
sa := option.WithCredentialsFile("./scai-qit-fb-adminsdk.json")
app, err := firebase.NewApp(ctx, nil, sa)
if err != nil {
log.Fatalf("error initializing app: %v\n", err)
}
client, err := app.Firestore(ctx)
if err != nil {
log.Fatal(err)
}
defer client.Close()
iter := client.Collection("COMPLEX_NONACS").Documents(ctx)
for {
doc, err := iter.Next()
if err == iterator.Done {
break
}
if err != nil {
log.Fatalf("Failed to iterate: %v", err)
}
//This part works. WIll return a Map of each Document
fmt.Println("--------------------------/n")
fmt.Println(doc.Data())

// This is the question. How do I get the INDEX name of the Document?
// something like...
fmt.Println(doc.Index_value_or_something_that_returns_IndexName())

// for example...
// {
// "ABC":{"line1":"yabba dabba","line2":"dingo dong"},
// "DEF":{"line1":"hooty tooty","line2":"blah blah"}
// }
// How to just get the "ABC" and "DEF"

}
}

最佳答案

您可以通过首先查找 DocumentRefDocumentSnapshot 获取文档 ID:

 fmt.Println(doc.Ref.ID)

请参阅 DocumentSnapshot 的引用文档和 DocumentRef .

关于firebase - 如何返回文档索引名称值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52626974/

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