如何在flutter应用程序中将setData转换为事务?

时间:2020-05-22 15:17:03

标签: flutter google-cloud-firestore

database
          .collection('details')
          .document(userId)
          .setData(
        {
          "othernames": FieldValue.arrayUnion(
            [
              {
                "name": name,
              },
            ],
          ),
        },
        merge: true,
      );

我不知道将其转换为交易。 交易只有setupdate
该文档将不存在,并且我无法使用更新。
它必须被创建

1 个答案:

答案 0 :(得分:1)

您的意思是这样的吗?

UIView