第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何獲取 Firestore 文檔的 ID?

如何獲取 Firestore 文檔的 ID?

Go
幕布斯7119047 2023-07-26 17:25:33
我正在 Firestore 中迭代用戶文檔,但無法看到當前正在閱讀的文檔的 ID。? package main? import (? ? "context"? ? firebase "firebase.google.com/go"? ? "fmt"? ? "google.golang.org/api/iterator"? ? "google.golang.org/api/option"? ? "log"? )? ?ctx := context.Background()? ?sa := option.WithCredentialsFile("cert.json")? ?app, err := firebase.NewApp(ctx, nil, sa)? ?client, err := app.Firestore(ctx)? ?iter := client.Collection("users").Documents(ctx)? ?for {? ? ?doc, err := iter.Next()? ? ?if err == iterator.Done {? ? ? ?break? ? ?}? ? ?if err != nil {? ? ? ?fmt.Println("Error:", err)? ? ?}? ? userDoc := doc.Data()? ? var customer_id string? ? fmt.Println("user object ID: ", userDoc["mobile_number"])? ? // ^ Works? ? fmt.Println("user object ID: ", doc.documentID)? ? // ^ This gives me this error "? doc.documentID undefined?? ? // (type *"cloud.google.com/go/firestore".DocumentSnapshot? ? // has no field or method documentID)"據(jù)我從文檔中讀到,?DocumentSnapshot 應該有一個documentID返回快照文檔 ID 的屬性。我究竟做錯了什么?
查看完整描述

1 回答

?
手掌心

TA貢獻1942條經(jīng)驗 獲得超3個贊

Go 文檔位于godoc.org上。

在你的行中doc, err := iter.Next()你會得到一個*DocumentSnapshot.?它有一個名為Refwhich is a 的字段*DocumentRef。ID根據(jù)文檔,它的字段是:

//?The?ID?of?the?document:?the?last?component?of?the?resource?path.
ID??string

因此,要訪問代碼中的 ID,您可能需要使用

doc.Ref.ID


查看完整回答
反對 回復 2023-07-26
  • 1 回答
  • 0 關注
  • 136 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網(wǎng)微信公眾號