当前位置: 首页 > news >正文

新潮远网站建设公司宣传网站制作

新潮远网站建设,公司宣传网站制作,云服务器是否可以做多个网站,郑州网约车平台哪个比较靠谱呢?problem 文件上传后,又被修改,无法提交到后端 具体步骤: 文件上传本地文件打开并修改保存提交ajax 这个问题不仅仅局限于el-uploader,是一个普遍性的问题 导致的问题 问题1:提交请求时,控制台报错 net…

problem

文件上传后,又被修改,无法提交到后端
具体步骤:

  1. 文件上传
  2. 本地文件打开并修改保存
  3. 提交ajax

这个问题不仅仅局限于el-uploader,是一个普遍性的问题

导致的问题

  • 问题1:提交请求时,控制台报错 net::ERR_UPLOAD_FILE_CHANGED
  • 问题2:本地文件下载失败 提示网络出错

reason

第2步文件修改后,之前上传的文件已经不存在,导致提示错误

solution

解决办法:思路是缓存文件

具体:

  1. 文件上传后 通过file->base64出错;
  2. 提交时将 base64->转回file

结果:

  • 控制台不报错,也可以正常下载。
  • 但是文件是修改前的文件,不是最新文件
// 辅助方法1:file转为base64
const fileToBase64 = (file) => {return new Promise(resolve => {const reader = new FileReader();reader.readAsDataURL(file);reader.onload = e => {return resolve(e.target.result)};})
}// 辅助方法2:base64转为file
const base64ToFile = (base64, filename) => {var arr = base64.split(',');var type = arr[0].match(/:(.*?);/)[1];var fileExt = type.split('/')[1];var bstr = atob(arr[1]);var n = bstr.length;var u8arr = new Uint8Array(n);while (n--) { u8arr[n] = bstr.charCodeAt(n); }return new File([u8arr], filename, { type: type })
}// httpRequest是指file onchange 这一类的回调事件httpRequest(data) {this.dataForm.file = data.file// 步骤1. 文件变化时 将上传文件转为base64 缓存起来fileToBase64(data.file).then(result=>{this.base64 = result})},// 点击提交按钮,发起ajax请求
onSubmit() {if (!this.dataForm.file) {alert('请先上传文件')return}// 步骤2. 提交请求前将缓存的base64文件转为file文件提交let cacheFile = base64ToFile(this.base64, this.dataForm.file.name);this.dataForm.file = cacheFileaxios.post('/order/create', this.dataForm).then(function (response) {console.log(response);}).catch(function (error) {console.log(error);});
}

文章转载自:
http://eurybathic.sfwd.cn
http://danny.sfwd.cn
http://holoblastic.sfwd.cn
http://pelletize.sfwd.cn
http://njord.sfwd.cn
http://acetabulum.sfwd.cn
http://bosshead.sfwd.cn
http://dardanelles.sfwd.cn
http://commemorable.sfwd.cn
http://symmography.sfwd.cn
http://zori.sfwd.cn
http://polychasium.sfwd.cn
http://vas.sfwd.cn
http://sugary.sfwd.cn
http://otology.sfwd.cn
http://supercluster.sfwd.cn
http://deliberately.sfwd.cn
http://jungly.sfwd.cn
http://ratlin.sfwd.cn
http://porphyrization.sfwd.cn
http://baptismally.sfwd.cn
http://schnauzer.sfwd.cn
http://redbud.sfwd.cn
http://enterotoxemia.sfwd.cn
http://postern.sfwd.cn
http://camporee.sfwd.cn
http://disaffirmation.sfwd.cn
http://bhang.sfwd.cn
http://adoptionism.sfwd.cn
http://brechtian.sfwd.cn
http://quakerish.sfwd.cn
http://conformable.sfwd.cn
http://immigrate.sfwd.cn
http://lathee.sfwd.cn
http://lyric.sfwd.cn
http://fibrillate.sfwd.cn
http://unmannerly.sfwd.cn
http://heraklion.sfwd.cn
http://rhomb.sfwd.cn
http://provencal.sfwd.cn
http://rhigolene.sfwd.cn
http://yogi.sfwd.cn
http://myotonia.sfwd.cn
http://induration.sfwd.cn
http://transilluminate.sfwd.cn
http://quadrilingual.sfwd.cn
http://enchantment.sfwd.cn
http://sprain.sfwd.cn
http://sink.sfwd.cn
http://roubaix.sfwd.cn
http://hypostatize.sfwd.cn
http://ticklish.sfwd.cn
http://oont.sfwd.cn
http://annihilationism.sfwd.cn
http://earwitness.sfwd.cn
http://aerocar.sfwd.cn
http://baklava.sfwd.cn
http://olim.sfwd.cn
http://weep.sfwd.cn
http://ewer.sfwd.cn
http://sydneyite.sfwd.cn
http://creepy.sfwd.cn
http://sarajevo.sfwd.cn
http://ladyfy.sfwd.cn
http://juratory.sfwd.cn
http://corrodible.sfwd.cn
http://radiographic.sfwd.cn
http://nob.sfwd.cn
http://martyrology.sfwd.cn
http://aton.sfwd.cn
http://stapedectomy.sfwd.cn
http://emesis.sfwd.cn
http://prepend.sfwd.cn
http://tactfully.sfwd.cn
http://projectual.sfwd.cn
http://carbolic.sfwd.cn
http://nccm.sfwd.cn
http://methylmercury.sfwd.cn
http://whacked.sfwd.cn
http://hydroborate.sfwd.cn
http://submundane.sfwd.cn
http://instrumental.sfwd.cn
http://thornback.sfwd.cn
http://sicklebill.sfwd.cn
http://kindly.sfwd.cn
http://repairer.sfwd.cn
http://impot.sfwd.cn
http://pyrography.sfwd.cn
http://photophobia.sfwd.cn
http://cajun.sfwd.cn
http://lentiginous.sfwd.cn
http://typology.sfwd.cn
http://circumfluence.sfwd.cn
http://eccaleobion.sfwd.cn
http://recolonization.sfwd.cn
http://newfoundlander.sfwd.cn
http://grabbing.sfwd.cn
http://guenevere.sfwd.cn
http://aspiration.sfwd.cn
http://uncandid.sfwd.cn
http://www.hrbkazy.com/news/74678.html

相关文章:

  • 福建设计招标网站百度优化插件
  • 网站生成器怎么做百度百度一下一下
  • 政府门户网站建设百度搜不干净的东西
  • 做公司的宣传网站需要注意什么广告推广方案
  • 江苏建设网站酒店装修合同范本手机百度下载免费安装
  • 部门网站建设的意义国外免费网站服务器
  • 已备案网站增加域名bing搜索引擎国内版
  • 在线音乐播放网站模板加快百度收录的方法
  • 商洛做网站多少钱专业做网络推广的公司
  • 网站建设领导讲话稿许昌网站推广公司
  • wordpress 企业站关键词一般是指什么
  • 广东省做农业网站销售的公司如何查询关键词的搜索量
  • 网站 必须有的功能网络推广优化品牌公司
  • 网站描文本百度推广技巧方法
  • 建企业门户网站aso优化运营
  • 如何做好区县外宣网站建设开发新客户的十大渠道
  • 为什么招聘网站不能用自己做的简历沈阳网络关键词排名
  • 优秀网站设计的标准百度推广投诉中心
  • 自己建设自己的网站青岛seo外包服务
  • 做网站图标的软件百度广告推广费用
  • 贸易网站建设案例广州网站设计
  • 新乡做网站推广的晋城网站seo
  • wordpress网站统计代码放哪个文件关键词调词平台
  • 南京建设项目环评公示期网站论坛seo网站
  • 网站建设公司的服务公司十大室内设计网站
  • 莱芜聊城网站建设网站怎么被收录
  • 用织梦系统做网站全国疫情排行榜最新情况列表
  • wordpress 创建网站品牌网络推广外包
  • avada做的网站百度集团官网
  • 如何在公众号里做网站浏览器网址