繁体   English   中英

错误:必须使用 import 加载 ES 模块:不支持 ES 模块的 D:\\node_modules\\react-markdown\\index.js require()

[英]Error: Must use import to load ES Module: D:\node_modules\react-markdown\index.js require() of ES modules is not supported

目前我正在使用"react": "17.0.2"并且我已经通过 npm 安装了"react-markdown": "^7.0.1" npm i react-markdown我正在使用这个包来显示我的富文本m 从我的 Strapi CMS 中获取。 我使用以下代码来显示内容:

import ReactMarkdown from "react-markdown";

export default function name({ posts }) {
  return (
    <>
      <div>
        <div>
          {posts.Title}
        </div>
      </div>
      <div>
        <ReactMarkdown source={posts.Content} escapeHtml={false} />
      </div>
    </>
  );
}

export async function getStaticProps() {
  const res = await fetch("http://localhost:1337/blogs");
  const posts = await res.json();

  return {
    props: { posts },
  };
}

但是当我运行它时,它给了我以下错误:

在此处输入图像描述

我正在使用节点v14.17.0并尝试添加"type": "module"

我的 package.json:

{
  "name": "passportlegacy",
  "version": "0.1.0",
  "private": true,
  "scripts": {
    "dev": "next dev",
    "build": "next build",
    "start": "next start",
    "lint": "next lint"
  },
  "dependencies": {
    "axios": "^0.21.1",
    "babel-plugin-inline-react-svg": "^2.0.1",
    "next": "11.0.1",
    "next-images": "^1.8.1",
    "react": "17.0.2",
    "react-dom": "17.0.2",
    "react-map-gl": "^6.1.16",
    "react-markdown": "^7.0.1",
  },
  "devDependencies": {
    "@svgr/webpack": "^5.5.0",
    "@types/react": "17.0.16",
    "eslint": "7.32.0",
    "eslint-config-next": "11.0.1",
    "typescript": "4.3.5"
  }
}

我通过将 react-markdown 固定到版本 6 来解决这个问题。

使用 react-markdown 的第 7 版,他们只迁移到 ESM。 这里有一个关于这意味着什么的解释,但截至 2021 年 10 月,Jest(版本 27)似乎仍然只对纯 ESM 模块提供实验性支持。我无法让它在我的项目和 react-markdown 版本 6 中工作现在工作正常。

我认为 Jest 的下一个主要版本(版本 28)将支持 ESM。

Node 当前将您的.js<\/code>文件视为 CommonJS。 您需要告诉 Node 将其视为 ES 模块。

尝试在package.json<\/code>文件中添加"type": "module"<\/code> 。

您可以将其放置在顶层的任何位置。 例如:

{
  "name": "passportlegacy",
  "version": "0.1.0",
  "type": "module",
  "private": true,
  "scripts": {
    ...
  }
  ...
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM