如何使用Flutter发送带有String参数的Post请求

时间:2019-05-16 20:34:40

标签: android dart flutter

大家好,我需要使用flutter将一些字符串参数发送到服务器,但是http包将json作为参数发送到服务器而不是字符串。

1 个答案:

答案 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}');