文件导入功能的前端实现

2019-08-14 10:25:57来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

1.HTML部分

<input type="file" accept='.xls,.xlsx' class="file">

accept属性可以设置要上传文件的格式

2.js部分

接口部分

export function postImportRole(params) {
  return axios.post(servers + '/role/import-roles', params, {
    headers: { 'Content-Type': 'multipart/form-data;charset=UTF-8' }
  });
}

代码部分

// 导入文件
importFile() {
const that = this;
const formData = new window.FormData();
const files = document.querySelector("input[type=file]").files;
formData.append("file", files[0]);
if (files.length <= 0) {
this.$openMessage("请选择导入文件", "error");
} else {
if (!/\.(xlsx)$/.test(files[0].name)) {
this.$openMessage("导入文件格式不正确", "error");
} else {
postImportRole(formData)
.then(res => {
if (res.data.code === "0") {
that.visibleImportRole = false;
this.$openMessage("导入成功");
this.search();
} else {
this.$openMessage(res.data.msg, "error");
}
})
.catch(() =>
this.$openMessage("导入失败,请核对文档格式是否正确", "error")
);
}
}

原文链接:https://www.cnblogs.com/thinkguo/p/11288334.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:JavaScript AJAX PHP

下一篇:es6学习笔记(一)