ppypp伦理天堂,91手机在线视频,免费在线观看黄色毛片,夜夜穞天天穞狠狠穞AV美女按摩

聯系官方銷售客服

1835022288

028-61286886

投訴 已解決 上傳文件求解,通過接口上傳文件一直返回找不到臨時文件 21 0
迅睿CMS版本:4.3.9 懸賞:10元

上傳文件求解,通過接口上傳文件一直返回找不到臨時文件,下面是代碼麻煩懂的人指點下


image

下面是上傳的代碼

uni.chooseImage({
        count: checkNumber,
  sizeType: ['compressed'],
        sourceType: ['album', 'camera'],
        success: res => {
   uni.uploadFile({
    url: "https://www.xxx.com/index.php?appid=1&appsecret=PHPCMFBE6FEA7FE7AD3&api_auth_code=14649082d40a176d42d9870927d66dce&api_auth_uid=7&s=api&c=file&m=upload&fid=97&siteid=1",
    filePath:res.tempFilePaths[0],
    name:'file_data',
    formData: {
      is_ajax:1
    },
    header: {
     'Content-Type': 'application/x-www-form-urlencoded',
    },
    success: function(res2){
      var ret = JSON.parse(res2.data);
      console.log(ret);
    }
   })
        }
      })
解決方案