【问题标题】:How to resolve network error in flutter firebase auth?如何解决flutter firebase auth中的网络错误?
【发布时间】:2019-05-08 03:47:45
【问题描述】:

每次我尝试注册或登录我的应用程序时都会收到此消息。我正在使用 Firebase 身份验证。

I/flutter (11519): Error :PlatformException(ERROR_NETWORK_REQUEST_FAILED, A network error (例如 timeout, interrupted or unreachable host) has occurred., null)

【问题讨论】:

    标签: flutter


    【解决方案1】:

    您可以尝试将其放在 try / catch 块中。

    这只是伪代码,但我希望您能了解如何处理它。

    try {
       // login with facebook code
    } catch (error) {
       if (error.code === 'the network error code') {
          // show dialog
       }
     }
    

    【讨论】:

    • 这如何回答有关解决问题的问题?
    猜你喜欢
    • 2021-10-29
    • 2019-05-08
    • 2020-12-05
    • 1970-01-01
    • 2020-06-06
    • 2021-12-30
    • 2016-06-01
    • 2022-07-05
    • 2022-10-02
    相关资源
    最近更新 更多