好得很程序员自学网

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

发送HTTP Post请求

Use the http package post() function to make a POST request.

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

main() async {
  var url = 'http://httpbin.org/post';
  var response = await http.post(url, body: 'name=doodle&color=blue');
  print("Response status: ${response.statusCode}");
  print("Response body: ${response.body}");
} 

查看更多关于发送HTTP Post请求的详细内容...

  阅读:60次