一般除了Ajax異步提交文件萌丈,傳統(tǒng)的文件上傳都需要form submit赎瞎,那么就會(huì)產(chǎn)生一個(gè)表單刷新的現(xiàn)象,那么這樣給用戶的體驗(yàn)很不好融柬,有一個(gè)解決辦法是通過一個(gè)隱藏的iframe來處理上傳操作
我采用的是ReactJS,amazeui,nodejs
1.html target指向iframe的name,就是把上傳后的操作交給iframe來處理
<form id="supplyformFile" name="formFile" method="post" target="frameFile"
encType="multipart/form-data">
<div className="am-form-file">
<button type="button" className="am-btn am-btn-default am-btn-sm">
<i className="am-icon-cloud-upload"></i> 選擇要上傳的文件
</button>
<input type="file" id="fileUp" onChange={this.UploadSupplyer} name="fileUp" />
</div>
<div id="supplyfile_div"></div>
</form>
<iframe id="frameFile" name="frameFile" style={{display: 'none'}}></iframe>
<input type="hidden" id="supplyfile" />
2.JS處理當(dāng)文件選擇后提交form
UploadSupplyer:function(){
var path = document.all.fileUp.value;
if(!path){return false;}
$('.loadinfo').html('<p>文件上傳中...</p>').removeClass("none");
$('#supplyformFile').submit();
},
3.nodejs服務(wù)器處理,因?yàn)樘幚眄?yè)面是nodejs服務(wù)器域死嗦,iframe中存在跨域的問題,所以需要用到H5的postMessage方法來傳遞參數(shù)給iframe外面的表單頁(yè)面
var fname = req.files.fileUp.path.replace("publicfiles", "").replace("public/files/", "");
res.writeHead(200, {'Content-type' : 'text/html'});
res.write('<script>');
res.write('window.parent.postMessage("'+fname+'","*");');
res.end('</script>');
4.JS處理上傳結(jié)果
window.addEventListener('message',function(e){
var fname=e.data;
$('#supplyfile').val(fname);
$(".loadinfo").addClass("none");
$(".successinfo").html("<p>文件上傳成功</p>").removeClass("none");
setTimeout(function() { $(".successinfo").addClass("none");}, 2000);
$("#supplyfile_div").html('<span class="am-icon-file-o"></span> <a target="_blank" href="'+hosts+'/files/'+fname+'">供應(yīng)商確認(rèn)單</a>');
},false);