我在Firebase中有一个名为favoritePost的集合,该集合有几个从我的应用程序获取数据的字段,其中一个字段是id,它需要是创建文档时生成的documentID,问题是我在使用太多的代码来实现此结果,并且在创建文档时我也出现了大约2秒钟的错误。
我想知道是否有更好的实现方法以及如何解决该错误。
在这里创建集合
问题出在这里,当创建集合时,我的主页出现错误,因为此文档没有数据,它只是创建了字段,而我不能在字段内使用docref.documentId,所以我必须创建一个新方法会更新此集合并保存包括docref.documentId的数据。

final docsref = await favRef
          .document(widget.currentUserId)
          .collection('favoritePost')
          .add(
        {
          'imageUrl': '',
          'caption': '',
          'likeCount': 0,
          'authorId': '',
          'timestamp': '',
          'userName': '',
          'userImage': '',
          'id': '',
          'idSecondPost': '',
          'experience': '',
          'cSrateStars': '',
          'productName': '',
          'brand': '',
          'cost': '',
          'envioDiasRateStars': '',
          'easyPurchaseRateStars': '',
          'totalRate': '',
          'businessName': '',
          'recomendation': '',
          'videoLink': '',
        },
      );
在这里,我将一些数据(包括docsref.documentID)传递到我的数据库文件
DatabaseService.addFavorite(
          currentUserId: widget.currentUserId,
          post: widget.reviews,
          docref: docsref.documentID);
这里的数据保存到之前创建的集合中,现在我可以将docsref.documentID包含在id字段
static void addFavorite(
      {String idReview,
      Reviews post,
      String currentUserId,
      String toId,
      String docref}) {
    DocumentReference postRef = reviewRef.document(post.idReview);
    postRef.get().then(
      (doc) {
        final docsref = favRef
            .document(currentUserId)
            .collection('favoritePost')
            .document(docref)
            .updateData({
          'imageUrl': post.imageUrl,
          'caption': post.comments,
          'likeCount': post.likeCount,
          'authorId': post.authorId,
          'timestamp': post.timestamp,
          'userName': post.userName,
          'userImage': post.userImage,
          'idReview': post.idReview,
          'experience': post.address,
          'cSrateStars': post.cSrateStars,
          'productName': post.productName,
          'brand': post.brand,
          'cost': post.cost,
          'envioDiasRateStars': post.envioDiasRateStars,
          'easyPurchaseRateStars': post.easyPurchaseRateStars,
          'totalRate': post.totalRate,
          'businessName': post.businessName,
          'recomendation': post.recomendation,
          'id': docref,
          'videoLink': post.videoLink,
        });
      },
    );
  }

最佳答案

您可以通过执行以下操作在主页中生成documentID:

var randomDoc = await favRef
          .document(widget.currentUserId)
          .collection('favoritePost')
          .document();
通过使用不带路径的document(),它将为您生成一个文档ID,然后您可以执行以下操作:
final docsref = await favRef
          .document(widget.currentUserId)
          .collection('favoritePost')
          .document(randomDoc.documentID)
          .setData(
        {
          'imageUrl': '',
          'caption': '',
          'likeCount': 0,
          'authorId': '',
          'timestamp': '',
          'userName': '',
          'userImage': '',
          'id': '',
          'idSecondPost': '',
          'experience': '',
          'cSrateStars': '',
          'productName': '',
          'brand': '',
          'cost': '',
          'envioDiasRateStars': '',
          'easyPurchaseRateStars': '',
          'totalRate': '',
          'businessName': '',
          'recomendation': '',
          'videoLink': '',
          'docId' : randomDoc.documentID
        },
      );
这样,您可以立即在首页中生成ID,然后将其添加到docId字段中,而无需进行更新。

10-08 03:25