当前位置:首页>>问题

uniapp的h5和小程序调试报错:TypeError: (void 0) is not a function,import.meta.globEager

产生这个报错,导致h5端和微信小程序端跑不起来,原因如下:import.meta.globEager已经被废弃,所以找到对应文件,将const files = import.meta.globEager('./*.js'); 改成const files = import.meta.glob('./*.js', { eager: true }) 即可

admin

产生这个报错,导致h5端和微信小程序端跑不起来,原因如下:

import.meta.globEager已经被废弃,所以找到对应文件,

将 const files = import.meta.globEager('./*.js'); 改成 const files = import.meta.glob('./*.js', { eager: true }) 即可


返回顶部