将 blob url 转换为 FormData() 的上传文件,并通过 AJAX 将其发送到 PHP 文件

问题描述 投票:0回答:4

我想将 blob URL AKA (window.URL.createObjectURL(blob);) 转换为文件对象,这样我就可以将它与 FormData() 一起使用,这样我就可以将其用作 AJAX 的上传图像文件,但我无法要成功做到这一点,我找不到将 blob URL 放入文件的方法

针对我的代码情况的对象,我知道根据我在这里访问的帖子可以做到这一点,可以在这里完成,这是声称可以做到这一点的帖子之一如何将 Base64 字符串转换为 javascript 文件对象,如文件输入表单?但是我没有使用任何这些帖子方法的原因是因为我不知道如何将它们的方法集成到我的代码情况中或者它太复杂而难以理解。

这是我一直在编写的代码。

index.php

<script>

document.addEventListener('DOMContentLoaded',function(){

document.querySelector('#image-input').addEventListener('change',createABlobUrlForAImgSrcAndUseThatAsAFileUploadFile);

function createABlobUrlForAImgSrcAndUseThatAsAFileUploadFile(){

//Creating a blob URL

var image_input = document.querySelector('#image-input').files[0];

var file_type= image_input.type;

var blob = new Blob([image_input], { type: file_type || 'application/*'});

var blob_url= window.URL.createObjectURL(blob); //<-Example blob:http://localhost/ed6761d2-2bb4-4f97-a6d8-a35c84621ba5

//

//Form data
var formData= new FormData();

formData.append('blob_url', blob_url);
//

//<AJAX>
var xhr= new XMLHttpRequest();
xhr.onreadystatechange= function(){

if(xhr.readyState == 4){

document.querySelector('#output').innerHTML= xhr.responseText;

//<Allow JS in AJAX request>
var exJS= document.querySelectorAll('#output script');
var enableAll= exJS.length;
for(var i=0; i < enableAll.length; i++){
eval(exJS[i].text);
}
//</Allow JS in AJAX request>

}
}

xhr.open('POST','x');
xhr.send(formData);
//</AJAX>
}

});

</script>

<input id='image-input' type='file'>

<div id='output'></div>

x.php

<?php

$file=$_FILES['blob_url']['name'];
$location='images/'.$file;
move_uploaded_file($_FILES['blob_url']['tmp_name'],$location);  

?>

我知道我的代码在逻辑上不正确,我必须更改我的代码才能做我想做的事情,所以我知道它在逻辑上不正确。只是想向你们展示我的意思。

javascript php ajax
4个回答
4
投票

这就是我在项目中完成的方法。但就我而言,我想将 blob 转换为 wav 文件,然后发送到后端。

//Save your blob into a variable
var url = URL.createObjectURL(blob);

//Now convert the blob to a wav file or whatever the type you want
var wavefilefromblob = new File([blob], 'filename.wav');

//Pass the converted file to the backend/service
sendWavFiletoServer(wavefilefromblob);

//This is my function where I call the backend service to send the wav file in Form data
function sendWavFiletoServer(wavFile) {
  var formdata = new FormData();
  formdata.append("file", wavFile); 
  var ajax = new XMLHttpRequest();
  ajax.addEventListener("load", completeHandler, false);
  ajax.addEventListener("error", errorHandler, false);
  ajax.addEventListener("abort", abortHandler, false);
  ajax.open("POST", "https://yourserviceurl/api/");
  ajax.setRequestHeader('API_SECRET', UzI1NiIsInR5cCI6IkpXVCJ9eyLCJleHAiO');
  ajax.send(formdata); 
}

2
投票

我也有同样的问题,找到了方法。

这将为您提供一个 Blob 对象:

let blob = await fetch(url).then(r => r.blob());

1
投票

我认为上传表单数据应该是一个blob对象,而不是一个blob URL

java脚本:

var image_input = document.querySelector('#image-input').files[0];
var blob_url= window.URL.createObjectURL(image_input); 
//Form data
var formData= new FormData();
// ...

// here , content-type: multipart/form-data
formData.append('upload_file', image_input);

php:

$file=$_FILES['upload_file']['name'];
$location='images/'.$file;
move_uploaded_file($_FILES['upload_file']['tmp_name'],$location);  

0
投票

我使用下面的代码,它对我有用

var fileFromBlob = new File([videoFile], 'uidVideo.mp4');

// Create new form data
const form = new FormData();
form.append('file', fileFromBlob);
    

//custom function for call api
const { statusCode } = await apiCallFn('POST', form, routes.uidVideo, false, true);
console.log(statusCode);
    
    
/////////////////////// api call function that come in the top code
export const apiCallFn = async (method, data, url, agent, type) => {
  const accessToken = localStorage.getItem('token');
  // build config
  let config = {
    method,
    url,
    data,
    headers: {
      'Content-Type': type ? 'multipart/form-data' : 'application/json',
      Authorization: 'Bearer' + ' ' + accessToken,
      accept: 'application/json',
    },
  };

  if (agent) {
    config['headers']['agent'] = agent;
  }

  // Call axios function to get or post data
  try {
    const { data } = await axios(config);
    // console.log("data", response.data);
    return Promise.resolve(data);
  } catch (error) {
    // const { statusCode } = error.response.data;
    // console.log(error.response.data);
    console.log(error.response.data);
    return Promise.resolve(error.response.data);
  }
};

© www.soinside.com 2019 - 2024. All rights reserved.