“你可能需要一个额外的加载器来处理这些加载器的结果。”

IT技术 javascript reactjs typescript npm webpack
2021-04-26 15:12:32

我目前正在尝试为 ReactJs 构建一个状态管理库。但是,一旦我将它实施到我的 React 项目(使用create-react-app)中,它就会开始删除此错误:

Failed to compile.

path/to/agile/dist/runtime.js 116:104
Module parse failed: Unexpected token (116:104)
File was processed with these loaders:
 * ./node_modules/babel-loader/lib/index.js
You may need an additional loader to handle the result of these loaders.
|       if (subscriptionContainer instanceof sub_1.CallbackContainer) subscriptionContainer.callback(); // If Component based subscription call the updateMethod which every framework has to define
|
>       if (subscriptionContainer instanceof sub_1.ComponentContainer) if (this.agileInstance.integration?.updateMethod) this.agileInstance.integration?.updateMethod(subscriptionContainer.component, Runtime.formatChangedPropKeys(subscriptionContainer));
|     }); // Log Job
|

如果我注释掉错误中提到的突出显示的代码行,它会跳转到另一个点并在那里抱怨。但这不可能是语法错误,因为 TypeScript 也会在 IDE 中抱怨。

工具如何工作: 一开始你必须定义一个框架,在这个例子中是 React。然后你可以创建一个 State 并通过 Hook 将这个 State 订阅到 React Functional Component。用于将 State 绑定到 React 组件的 Hook 只是创建一个回调,该回调触发重新渲染(通过改变 a useReducer)并将此回调分配给订阅的 State。

如果您想了解更多信息,请查看此 repo:https : //github.com/agile-ts/agile

依赖项:

第三方状态管理库:

  "dependencies": {
    "@types/chai": "^4.2.12",
    "@types/mocha": "^8.0.2",
    "chai": "^4.2.0",
    "eslint-config-prettier": "^6.11.0",
    "mocha": "^8.1.1",
    "prettier": "2.0.5",
    "ts-node": "^8.10.2",
    "tsc-watch": "^4.1.0",
    "tslib": "^2.0.0",
    "typescript": "^3.9.7"
  }
  • 节点: v14.8.0

react项目:

"dependencies": {
    "@testing-library/jest-dom": "^4.2.4",
    "@testing-library/react": "^9.3.2",
    "@testing-library/user-event": "^7.1.2",
    "@types/jest": "^24.0.0",
    "@types/node": "^12.0.0",
    "@types/react": "^16.9.0",
    "@types/react-dom": "^16.9.0",
    "react": "^16.13.1",
    "react-dom": "^16.13.1",
    "react-scripts": "3.4.3",
    "typescript": "~3.7.2",
    "agile-framework": "file:../../"
  },
  • react: 16.13.1
  • 新产品管理: 6.14.7
4个回答

问题是您将 ES2020 发送到dist/. 如果您查看该行,它会抱怨:

if (subscriptionContainer instanceof sub_1.ComponentContainer) if (this.agileInstance.integration?.updateMethod) this.agileInstance.integration?.updateMethod(subscriptionContainer.component, Runtime.formatChangedPropKeys(subscriptionContainer));
                                                                                              // ^^                                         // ^^

您可以看到它在发出的代码中使用了可选的链接运算符。因此,您的库的使用者需要有适当的配置来处理此类代码。您的示例消费者,即 CRA 应用程序,正在使用 Babel;尽管设置确实具有可选链的转换,但它仅在 React 应用程序本身的源代码上运行,而不是在其依赖项(包括您的库)上运行。

修复它的一种选择是发布较少的现代代码,这将减少消费者所需的配置量。例如,如果您在 中使用以下设置来定位 ES6 tsconfig.json

{
    "target": "ES6",
    "lib": ["DOM", "ES6", "DOM.Iterable", "ScriptHost", "ES2016.Array.Include"],
    // ...
}

React 应用程序至少可以在不需要更改源代码的情况下启动。

在这种情况下的问题是 react-leaflet 的 3.2.0 版本不适用于每个项目(我真的不知道为什么)。我正在使用 CRA 进行react,然后在做任何事情之前记下现在的解决方案......

  1. 卸载react传单
  2. 转到 package.json 并粘贴此行

"react-leaflet": ">=3.1.0 <3.2.0 || ^3.2.1",
"@react-leaflet/core": ">=1.0.0 <1.1.0 || ^1.1.1" ,

这就是我解决问题的方式。另一个网站中答案的链接。 https://www.gitmemory.com/issue/PaulLeCam/react-leaflet/891/860223422

最近我正在使用 Angular 7,管理员想在我们的支付门户中添加一些增强功能。当我拉出分支并在本地运行它时,我遇到了同样的错误。

我认为这与当前版本的框架工作中使用的 js webpack、框架版本和 ecmascript 版本有关。

我为解决此错误所做的工作:

  1. rm -rf node_modules
  2. rm -f package-lock.json
  3. npm install

此处使用的可选链接:

this.agileInstance。integration?.updateMethod

  1. 删除 node_modules/.cache
  2. 将“chrome 79”添加到 package.json 中的浏览器列表
  3. 重新加载应用