界面上传文件js包AjaxUpload.js
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了界面上传文件js包AjaxUpload.js相关的知识,希望对你有一定的参考价值。
function uploadFile() { new AjaxUpload($("#importFile"), { action: url, type: "POST", data: {"userId": userId}, autoSubmit: true, responseType: "json", name: ‘file‘, onSubmit: function (file, ext) { if (!(ext && /^(rar|zip|pdf|pdfx|txt|csv|xls|xlsx|doc|docx|RAR|ZIP|PDF|PDFX|TXT|CSV|XLS|XLSX|DOC|DOCX)$/.test(ext))) { pNotifyAutoCloseCenter("fail", "您上传的文档格式不对,请重新选择!", "error"); return false; } console.log("onsubmit"); }, onComplete: function (file, response) { pNotifyAutoCloseCenter("info", "数据上传" + response.status + "!", "info"); console.log("upload file complete, savePath: " + response.savePath); } }); }
以上是关于界面上传文件js包AjaxUpload.js的主要内容,如果未能解决你的问题,请参考以下文章