其他分享
首页 > 其他分享> > el-upload + accept限制上传的文件格式

el-upload + accept限制上传的文件格式

作者:互联网


/**  * kevin 2021/1/4  * @description el-upload + accept限制上传的文件格式  * @param e 校验的类型  * @returns {string | null}  */ export function acceptFile(e) {   const allowHook = {     video: '.mp4, .ogv, .ogg, .webm',     audio: '.wav, .mp3, .ogg, .acc, .webm, .amr',     file: 'doc,.docx,.xlsx,.xls,.pdf',     excel: 'xlsx,.xls',     img: '.jpg, .jpeg, .png, .gif'   }   if (e) {     return allowHook[e]   }   let srt = null   for (const k in allowHook) {     srt += allowHook[k]   }   return srt }

标签:el,upload,accept,webm,allowHook,文件格式,srt
来源: https://www.cnblogs.com/sws-kevin/p/14699883.html