提问者:小点点

React native 63版图像上载问题


截图附后


共1个答案

匿名用户

将“file://”替换为“/private”

dataform.append('file',{uri:platform.os=='ios'?photo.uri.replace(“file://”,“/private”):photo.uri,name:'photo.jpg',type:'image/jpg'});

IOS:photo.uri.replace(“file://”,“/private”)

它只适用于真实的设备,在模拟器上仍然给出错误,但至少你可以部署你的应用程序,直到这个问题被修补