正则检查excle文件格式
const checkFile = (file) => { fullscreenLoading.value = true console.log(file) // application/vnd.openxmlformats-officedocument.spreadsheetml.sheet 格式为xlsx // application/vnd.ms-excel 格式为xls const isExcel = /^(application\/).*((\.sheet)|(\.ms\-excel))$/.test(file.type) console.log(isExcel) const isLt2M = file.size / 1024 / 1024 < 0.5 if (!isExcel) { ElMessage.error('只能是excel格式!') fullscreenLoading.value = false } if (!isLt2M) { ElMessage.error('文件不能超过2M') fullscreenLoading.value = false } return isExcel && isLt2M }
正心投入专注