同标题,但在caniuse上查询在safari浏览器中并无兼容问题。相关代码:letinput=document.createElement('input');letformData=newFormData();input.type='file';input.setAttribute('accept','image/*');input.addEventListener('change',function(){letfile=this.files[0];alert(file.name)formData.append('file',file);letloading=weui.loading('loading');axios({lmethod:'post',url:url,data:formData,headers:{'Access-token':token}}).then(function(data){xxx})});input.click();
FFIVE
相关分类