我有图像列表。我需要使用dio从服务器上传图像列表。还需要使用MultipartFile上传。在dio中的fromFile。所以,我如何上传它?'document': await MultipartFile.fromFile(file[index].path),
我尝试这个…
for (int index = 0; index < file.length; index++)
'document': await MultipartFile.fromFile(file[index].path),
但它不工作.他们只上传一个图像从列表.所以有没有任何其他的方式来上传图像列表从服务器使用dioFlutter?
2条答案
按热度按时间k5hmc34c1#
你可以通过下面的代码试试:
idfiyjo82#
在您的上传方法中: