我已经在测试新的Firestore
API,但我在文档和update
调用方面遇到了一些问题。
我正在尝试更新不存在的文档,但收到错误消息。显然这很好,因为文档说如果不存在update
调用将失败。DocumentReference
但是,阅读官方文档后,我看到了下一段代码:
// Update the population, creating the document if it
// does not already exist.
db.collection("cities").document("Beijing").update(
new UpdateOptions().createIfMissing(),
"population",
21500000);
我试图复制这个,但我没有找到UpdateOptions
电话。此外,检查这些不同的覆盖方法update
不是此类调用的构造函数。
我正在使用11.4.2
Firebase 的版本。知道发生了什么吗?