大家好,我需要使用flutter将一些字符串参数发送到服务器,但是http包将json作为参数发送到服务器而不是字符串。
答案 0 :(得分:1)
是否可能在body
调用中将Map
参数设置为http.post
?
import 'package:http/http.dart' as http;
var url = 'http://example.com/post';
var response = await http.post(url, body: {'name': 'doodle', 'color': 'blue'});
print('Response status: ${response.statusCode}');
print('Response body: ${response.body}');