什么是Dart HttpRequest中的“进度事件”错误?

时间:2018-07-08 07:13:35

标签: dart httprequest

我想使用HttpRequest.getString()方法从“ https://google.com”中获取String。我为此使用了异步方式。

import 'dart:html';
import 'dart:async';

void main() async{
  try{
    print(await HttpRequest.getString("https://google.com"));
  }catch(e){
    print(e);
  }
}

但是我收到一条错误消息“ ProgressEvent的实例”。我知道什么是“未来实例”,但这是什么?

0 个答案:

没有答案