-1
List<String> _productIds = widget.productIds;
String _storeId = widget.storeid;
String jsonProductId = jsonEncode(_productIds); //that give me[\"abc\",\"abc\",\"abc\"]
4

1 回答 1

0

我猜您想将逗号分隔的字符串传递给 http 请求。您可以尝试将列表转换为逗号分隔的字符串。

List<String> _productIds = widget.productIds;
String requestString = _productIds .join(', ');
print(s);
于 2020-12-17T05:51:24.070 回答