📜  flutter 2 http - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:23.703000             🧑  作者: Mango

代码示例2
In flutter you need to parse the url

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

var url = Uri.parse('https://example.com/whatsit/create');

var response = await http.post(url, body: {'name': 'doodle', 'color': 'blue'});
print('Response status: ${response.statusCode}');
print('Response body: ${response.body}');

print(await http.read('https://example.com/foobar.txt'));