gpt4 book ai didi

javascript - "You may need an additional loader to handle the result of these loaders."

转载 作者:行者123 更新时间:2023-12-03 18:33:50 29 4
gpt4 key购买 nike

我目前正在尝试为 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 功能组件。
用于将 State 绑定(bind)到 React 组件的 Hook 只需创建一个触发重新渲染的回调(通过改变 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
  • 最佳答案

    问题是您将 ES2020 发送到 dist/ .如果您查看它提示的行:

    if (subscriptionContainer instanceof sub_1.ComponentContainer) if (this.agileInstance.integration?.updateMethod) this.agileInstance.integration?.updateMethod(subscriptionContainer.component, Runtime.formatChangedPropKeys(subscriptionContainer));
    // ^^ // ^^
    你可以看到它正在使用 optional chaining发出的代码中的运算符。因此,您的库的使用者需要有适当的配置来处理这种代码。您的示例消费者 CRA 应用程序正在使用 Babel;尽管该设置确实具有可选链接的转换,但它仅在 React 应用程序本身的源代码上运行,而不是它的依赖项(包括您的库)。
    修复它的一种选择是发出更少的现代代码,这将减少消费者所需的配置量。例如,如果您使用 tsconfig.json 中的以下设置以 ES6 为目标。 :
    {
    "target": "ES6",
    "lib": ["DOM", "ES6", "DOM.Iterable", "ScriptHost", "ES2016.Array.Include"],
    // ...
    }
    React 应用程序至少可以在不需要更改源代码的情况下启动。

    关于javascript - "You may need an additional loader to handle the result of these loaders.",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63423384/

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