data:image data url 文件转为Blob上传后端的方法
程序员文章站
2022-06-24 15:27:29
这篇文章主要介绍了data:image data url 文件转为Blob上传后端的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 19-07-16...
一些场景,比如canvas获取的图片,或者微信开发sdk返回的图片格式是data:img格式的,我们需要上传到服务器上,那就需要进行转化。
将dataurl转成blob
// base64 转 blob datauritoblob(datauri) { // convert base64/urlencoded data component to raw binary data held in a string let bytestring; if (datauri.split(',')[0].indexof('base64') >= 0) { bytestring = atob(datauri.split(',')[1]); } else bytestring = unescape(datauri.split(',')[1]); // separate out the mime component const mimestring = datauri .split(',')[0] .split(':')[1] .split(';')[0]; // write the bytes of the string to a typed array const ia = new uint8array(bytestring.length); for (let i = 0; i < bytestring.length; i++) { ia[i] = bytestring.charcodeat(i); } return new blob([ia], { type: mimestring }); },
构建form上传表单
const blob = datauritoblob(imgdataurl); const formdata = new formdata(); // formdata.append('auth', state.token.auth); 可以选择性的加入一些鉴权 formdata.append('file', blob); 进行数据上传,我这里使用的是axios const params = { url: '/store/file', payload: formdata }; const data = await this.upload(params);
我已经对axios进行了封装
export const upload = (params) => { const { url, payload } = params return axios.post(url, payload, { headers: { 'content-type': 'multipart/form-data' } }).then(x => x.data) }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。