美文网首页react native
N-第三方-react-native-image-picker,

N-第三方-react-native-image-picker,

作者: 追逐繁星的阿忠 | 来源:发表于2020-08-10 17:51 被阅读0次

处理上传数据,单张图片

    l    let formData = new FormData();//如果需要上传多张图片,需要遍历数组,把图片的路径数组放入formData中
    let file = {uri: response.uri, type: 'multipart/form-data', name: 'image.png'};   //这里的key(uri和type和name)不能改变,
    formData.append("files",file);   //这里的files就是后台需要的key

多张图片上传

 let formData = new FormData();
    for(var i = 0;i<imgAry.length;i++){
        let file = {uri: imgAry[i], type: 'multipart/form-data', name: 'image.png'};   
        formData.append("files",file);  
    }

上传

  fetch(uploadURL,{
        method:'POST',
        headers:{
            'Content-Type':'multipart/form-data',
        },
        body:formData,
    })
        .then((response) => response.text() )
        .then((responseData)=>{
 
            console.log('responseData',responseData);
        })
        .catch((error)=>{console.error('error',error)});

原文地址:https://blog.csdn.net/sinat_17775997/article/details/73822845?utm_source=blogxgwz28

奔着幸福,我们苦苦寻觅。可是,幸福在哪儿?幸福该是沙漠中一片清凉的绿洲吧?我们跋山涉川,望眼欲穿,最终却只见到几丛沙棘;幸福该是大海中的一 颗闪亮的珍珠吧?我们涉江探海,寻踪觅迹,末了却只捡到几只贝壳;幸福该是旅途中的一座舒适的城堡吧?我们饥餐渴饮,夜往晓行,最后却只找到一处陋室;幸 福该是山那边的一处桃红杏黄的花果园吧?我们千辛万苦,气喘吁吁,终了却只见到几弯垂柳、几丛小草。其实我们不要把幸福太理想化了,世上本没有完整无缺的 幸福。

相关文章

网友评论

    本文标题:N-第三方-react-native-image-picker,

    本文链接:https://www.haomeiwen.com/subject/hugjdktx.html