报错内容
后台报错内容展示:
ERROR (node:9788) Warning: require() of ES modules is not supported. 22:53:26
require() of E:\workspace2\cronmall_ui\vue-front-1010\node_modules\axios\index.js from E:\workspace2\cronmall_ui\vue-front-1010\node_modules\vue-server-renderer\build.dev.js is an ES module file as it is a .js file whose nearest parent package.json contains "type": "module" which defines all .js files in that package scope as ES modules.
Instead rename index.js to end in .cjs, change the requiring code to use import(), or remove "type": "module" from E:\workspace2\cronmall_ui\vue-front-1010\node_modules\axios\package.json.
前端报错内容展示:
点开第一个报错项显示如下:
无法找到模块“./lib/axios.js”的声明文件。“e:/workspace2/cronmall_ui/vue-front-1010/node_modules/axios/lib/axios.js”隐式拥有 "any" 类型。
点开报错信息抛出的其他链接,并没有找到什么有效信息,一开始我以为是那块代码写的有问题,但报错信息上显示 require() of ES modules is not supported.
,所以我推测是版本问题。文章来源:https://www.toymoban.com/news/detail-514846.html
报错分析
axios版本太高了,不兼容导致的,一开始安装的时候执行的命令是npm install axios
,我使用命令查看了下axios的版本,发现是最新版本:"1.1.3"
,然后就又执行了个命令npm install axios@0.26.0
降低了下axios的版本发现就不报错了。丢,也是无语。
展示一下成功页面:
文章来源地址https://www.toymoban.com/news/detail-514846.html
到了这里,关于ERROR (node:9788) Warning: require() of ES modules is not supported.的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!