好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

HTTP Get请求

Use the http package get() function to make a GET request.

 import 'package:http/http.dart' as http;

main() async {
  var url = 'http://httpbin.org/';
  var response = await http.get(url);
  print("Response status: ${response.statusCode}");
  print("Response body: ${response.body}");
} 

查看更多关于HTTP Get请求的详细内容...

  阅读:70次