在使用fetch时,出现了未定义的错误,原因是没有安装 node-fetch 依赖包
解决方案:
1.npm安装 node-fetch 依赖
npm install node-fetch
在相关页面引入 node-fetch 依赖
import fetch from "node-fetch";
2.npm安装 node-fetch@2 依赖
npm install node-fetch@2
在相关页面引入 node-fetch 依赖
const fetch = require("node-fetch")