前端数据处理,找到网址中是否有xxx文件后缀

62 阅读1分钟
  1. 192.xxx.xxx.xxx:9090/xxx/xxx/xxx… 找到网址中是否有arrType文件后缀
   const test = computed(() => {
      const arrType = ['.pdf','.html','.jpg','.jpeg','.png','.txt','.docx','.xlsx']
      const type=arrType.find(item=>props.value.includes(item))
      return type ? true : false
    });