首页 > 解决方案 > 如何解决flutter firebase auth中的网络错误?

问题描述

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

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

标签: flutter

解决方案


你可以试着把它放在一个try / catch街区里。

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

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

推荐阅读