http

getData(){

  http.get(host).then((response){print(response.body);});

}

 

getData async(){

  var response=await http.get(host);

  var datas=jsonDecode(response.body);

  print('response.body');

}

 

这两种的作用都是一样的。

posted @ 2019-04-28 20:49  braveheart007  阅读(99)  评论(0编辑  收藏  举报