Js(二)SyntaxError: Cannot use import statement outside a module

前言

本章主要讲述js报错之SyntaxError: Cannot use import statement outside a module的解决


一、问题描述

  • 问题:顾名思义,根据错误信息翻译【不能在模块外部使用导入语句】,即报错地方import { v4 as uuidv4 } from 'uuid’该导入语句在模块外

Js(二)SyntaxError: Cannot use import statement outside a module_第1张图片


二、解决方法

  • 由于在模块外,我们更改package.json即可,在文件中添加【“type”: “module”】
"type": "module"

Js(二)SyntaxError: Cannot use import statement outside a module_第2张图片


三、查看结果

查看1)重新运行
  • 重新运行代码不报错即可

Js(二)SyntaxError: Cannot use import statement outside a module_第3张图片

你可能感兴趣的:(问题集,node.js)