gpt4 book ai didi

firebase - Flutter Cloud Firebase设置自定义ID(上传)

转载 作者:行者123 更新时间:2023-12-03 04:24:20 24 4
gpt4 key购买 nike

我想将文件上传到Cloud Firestore数据库,但不使用随机生成的ID,而是我设置的ID。我该怎么做,我在下面运行了示例代码。
谢谢你的帮助

final db = Firestore.instance;

String name = "Test";
String id = "id1";

...

upload() async {
DocumentReference ref = await db.collection("ka").add({"name" : "$name"});
setState(() {
ref.??? "documentID";
});
}

最佳答案

您可以提供您选择的documentId,如下所示。

db.collection("ka")
.document("DocumentIdOfYourChoice")
.setData({
'name': '$name',
});

关于firebase - Flutter Cloud Firebase设置自定义ID(上传),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60785175/

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