我正在尝试增加编号。只要点按它,就喜欢一个名字。我已使用以下云Firestore查询
onTap: () => Firestore.instance.runTransaction((transaction) async {
print(Text('hello'));
DocumentSnapshot freshSnapshot = await transaction.get(record.reference);
Record fresh = Record.fromSnapShot(freshSnapshot);
await transaction
.update(record.reference, {'votes': fresh.votes + 1});
}),
上述交易未反映对数据库的任何更改。