在邮递员身上:
id:2
images[]:image1 base64
image[]:image2 base64
如何设置正文以发送请求?
这是我的代码
var uri = 'url';
var images = List<String>();
Map data = {
'id': id,
'images[]' : images,
};
var body = json.encode(data);
final response = await http.post(uri, body: body);
print("${response.statusCode}");
print("${response.body}");
if (response.statusCode == 200) {
return Model.fromJson(json.decode(response.body));
} else {
throw Exception('Failed to load post');
}
响应失败
我的代码有什么问题?