在项目中用到excel报表上传
需要判断文件格式是否是excel文件 且需要兼容兼容MS office 和WPS office
记录一下
//上传之前进行文件格式校验
//校验MS office的Excel文件
const isXLS = file.type === 'application/vnd.ms-excel';
if (isXLS) {
this.$message({
type: "success",
message: "数据正在导入中,请稍后..."
});
return true;
}
const isXLSX = file.type === 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet';
if (isXLSX) {
this.$message({
type: "success",
message: "文件上传中..."
});
return true;
}
//校验WPS 的Excel文件
var index = file.name.lastIndexOf(".");
var length = file.name.length;
var suffix = file.name.substr(index+1,length-index-1);
const isXLS2 = suffix==='xls';
if(isXLS2){
return true;
}
const isXLSX2 = suffix ==='xlsx';
if(isXLSX2){
return true;
}
this.$message.error('上传文件只能是xls或者xlsx格式!');
return false;