如何在正文http.post中设置list <String>

时间:2019-07-18 08:55:56

标签: flutter dart

在邮递员身上:

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

响应失败

我的代码有什么问题?

0 个答案:

没有答案