话不多说,看方法:
// 检查文件是否以规定的拓展名为结尾
checkFile(name) {
const reg = /(.txt|.html|.css|.js|.config|.json|.htm|.zip|.rar)$/;
if (!reg.test(name)) {
return false;
} else {
return true;
}
},