gpt4 book ai didi

webpack - Web3 formatter.js 加载问题

转载 作者:行者123 更新时间:2023-12-04 12:29:46 29 4
gpt4 key购买 nike

我正在尝试使用 NextJS 创建一个小型以太坊区块链应用程序。
导入 Web3 导致一些问题

ModuleParseError: Module parse failed: C:\Path\node_modules\web3-core-helpers\lib\formatters.js Unexpected token (296:20)
You may need an appropriate loader to handle this file type.
| // If options !== undefined, don't blow out existing data
| if (options.fromBlock === undefined)
| options = { ...options, fromBlock: 'latest' };
| if (options.fromBlock || options.fromBlock === 0)
| options.fromBlock = inputBlockNumberFormatter(options.fromBlock);
at C:\Path\node_modules\webpack\lib\NormalModule.js:303:19
at C:\Path\node_modules\webpack\lib\NormalModule.js:209:11
at C:\Path\node_modules\loader-runner\lib\LoaderRunner.js:373:3
at iterateNormalLoaders (C:\Path\node_modules\loader-runner\lib\LoaderRunner.js:214:10)
at C:\Path\node_modules\loader-runner\lib\LoaderRunner.js:205:4
at C:\Path\node_modules\enhanced-resolve\lib\CachedInputFileSystem.js:70:14
at processTicksAndRejections (internal/process/task_queues.js:75:11)
import Web3 from "web3";是根本原因
import Web3 from "web3";

const web3 = new Web3(window.ethereum);

export default web3;
这是我的 package.json
{
"name": "myproject",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha",
"dev": "next dev"
},
"author": "",
"license": "ISC",
"dependencies": {
"@truffle/hdwallet-provider": "^1.2.2",
"fs-extra": "^9.1.0",
"ganache-cli": "^6.12.2",
"mocha": "^8.3.0",
"next": "^4.1.4",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"solc": "^0.4.17",
"web3": "^1.3.4"
}
}
我需要其他模块吗?
我注意到在使用 npx create-next-app 创建应用程序时相同的导入正在工作,但我想使用特定版本所以我只使用了 npm install --save next@4.1.4 react@16 react-dom@16在我的节点项目中。

最佳答案

此错误的原因在消息中非常明显,可能是因为 ...较新的 javascript 中的符号,因为您使用的下一个是旧的,它没有意义。你有 3 个选择(我做了第三个)

  • 使用 options = Object.assign(options, {fromBlock: latest}) 将该位代码更改为旧语法
  • 使用较新的 next 可以实现新语法
  • 使用不使用新语法的旧 web3,@1.2.9 有效。别忘了npm install
  • 关于webpack - Web3 formatter.js 加载问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66374242/

    29 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com