database
.collection('details')
.document(userId)
.setData(
{
"othernames": FieldValue.arrayUnion(
[
{
"name": name,
},
],
),
},
merge: true,
);
我不知道将其转换为交易。
交易只有set
和update
。
该文档将不存在,并且我无法使用更新。
它必须被创建
答案 0 :(得分:1)
您的意思是这样的吗?
UIView