Flutter Firestore交易无法正常运行

时间:2019-09-17 14:11:44

标签: flutter google-cloud-firestore

我正在尝试增加编号。只要点按它,就喜欢一个名字。我已使用以下云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});
          }),

上述交易未反映对数据库的任何更改。

0 个答案:

没有答案