在检查API端点(确定连接状态)的相对简单的代码块中,我依靠try..catch
作为验证应用程序是否可以与服务器通信的机制。
我遇到的问题是,在调试时,即使我在内部处理错误,调试器也总是在连接线上停止(当应用程序处于脱机状态时)。
Future<bool> isOnline() async {
try {
// VSCode debugger always stops on this line when no connection
await http
.get('${consts.apiBaseUrl}/api/ping')
.timeout(Duration(seconds: normalTimeoutLength))
.catchError(
(_) {
// Trying catchError on the Future
_isOnline = false;
return false;
},
);
_isOnline = true;
return true;
} on HttpException catch (_) {
// Trying to catch HTTP Exceptions
_isOnline = false;
return false;
} on SocketException catch (_) {
// Trying to catch Socket Exceptions
_isOnline = false;
return false;
}
}
答案 0 :(得分:0)
这是Dart VM的限制。它无法正确检测到catchError()
捕获的异常,因此会导致调试器暂停它们。这里有一些讨论:
https://github.com/flutter/flutter/issues/33427#issuecomment-504529413
如果单击“继续/继续”,则行为应该没有差异,但是作为一种解决方法,您可以将代码转换为使用真实的try
/ catch
而不是catchError()
或取消选中调试侧栏中的选项来中断未捕获的异常(尽管显然这也会影响真正的未捕获的异常-尽管在Flutter中它们并不太常见,因为框架捕获了大多数异常)。
答案 1 :(得分:0)