flutter NetworkImage获取服务器图片失败错误提示: HttpException: Connection closed while receiving data, uri = http://192.168.3.30:9001/api/get_file/swiper_image/swiper_4.jpg
flutter github上的解决方法
1、关闭模拟器的proxy
2、关闭了问题还存在的话 例如我,我使用的python3的flask作为服务器,需要在app.run()执行前
from werkzeug.serving import WSGIRequestHandler
WSGIRequestHandler.protocol_version = "HTTP/1.1"
...
app.run(...)