gpt4 book ai didi

firebase - 在 Flutter 中处理 Firebase 权限不足的错误

转载 作者:IT王子 更新时间:2023-10-29 07:04:08 25 4
gpt4 key购买 nike

如何处理来自 firebase 的权限不足错误?我目前这样做:

      try {
DocumentSnapshot doc = await Firestore.instance.collection('SomeCollection').document('SomeDocument').get();
// Do something
} catch (error) {
print('Error: $error');
// Do something to show user
}

我怎么不能只检查权限错误。我怎样才能只捕获权限不足的错误?

还有什么时候应该使用.catchError(),我试过这个:

        DocumentSnapshot doc = await Firestore.instance.collection('Some Collection').document('Some Document').get().catchError((onError) {
// What to do here
});

我好像并没有真正捕捉到错误,因为还是抛出了异常

最佳答案

这是应该的

 DocumentSnapshot doc = await Firestore.instance.collection('Some Collection').document('Some Document').get().catch((err)=>print(err));

关于firebase - 在 Flutter 中处理 Firebase 权限不足的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55086984/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com