Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

解决 WEB 端BUG #1565

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions dio/lib/src/adapters/browser_adapter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,9 @@ class BrowserHttpClientAdapter implements HttpClientAdapter {
}

var completer = Completer<ResponseBody>();

bool haveSent = false;
xhr.onLoad.first.then((_) {
haveSent = true;
Uint8List body = (xhr.response as ByteBuffer).asUint8List();
completer.complete(
ResponseBody.fromBytes(
Expand All @@ -61,8 +62,6 @@ class BrowserHttpClientAdapter implements HttpClientAdapter {
);
});

bool haveSent = false;

if (options.connectTimeout > 0) {
Future.delayed(Duration(milliseconds: options.connectTimeout)).then(
(value) {
Expand Down