ChatGPT解决这个技术问题 Extra ChatGPT

当前未启用对实验语法“classProperties”的支持

当我在 Django 项目中设置 React 时,我遇到了这个错误

ModuleBuildError in Module build failed (from ./node_modules/babel-loader/lib/index.js): SyntaxError: C:\Users\1Sun\Cebula3\cebula_react\assets\js\index.js: Support for the experimental syntax 'classProperties ' 当前未启用 (17:9):

  15 | 
  16 | class BodyPartWrapper extends Component {
> 17 |   state = {
     |         ^
  18 | 
  19 |   }
  20 | 

Add @babel/plugin-proposal-class-properties (https://git.io/vb4SL) to the 
'plugins' section of your Babel config to enable transformation.

所以,我安装了@babel/plugin-proposal-class-properties 并将其放入 babelrc

包.json

{
  "name": "cebula_react",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "start": "webpack-dev-server --config ./webpack.config.js --mode development",
    "test": "echo \"Error: no test specified\" && exit 1",
    "build": "webpack --config prod.config.js"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "babel": {
    "presets": [
      "@babel/preset-env",
      "@babel/preset-react"
    ]
  },
  "devDependencies": {
    "@babel/cli": "^7.0.0",
    "@babel/core": "^7.0.0",
    "@babel/plugin-proposal-class-properties": "^7.0.0",
    "@babel/preset-env": "^7.0.0",
    "@babel/preset-react": "^7.0.0",
    "babel-loader": "^8.0.2",
    "babel-plugin-transform-class-properties": "^6.24.1",
    "react-hot-loader": "^4.3.6",
    "webpack": "^4.17.2",
    "webpack-bundle-tracker": "^0.3.0",
    "webpack-cli": "^3.1.0",
    "webpack-dev-server": "^3.1.8"
  },
  "dependencies": {
    "react": "^16.5.0",
    "react-dom": "^16.5.0"
  }
}

babelrc

{
  "presets": [
    "@babel/preset-env",
    "@babel/preset-react"
  ],
  "plugins": [
    "@babel/plugin-proposal-class-properties"
  ]
}

但是错误仍然存在,是什么问题?

您不应该同时拥有/需要 @babel/plugin-proposal-class-propertiesbabel-plugin-transform-class-properties。安装后要重建,是吗?
你运行的是什么版本的 babel?
分享你的包json
我编辑了我的包 json
尝试运行 npx babel-upgrade --write --install

J
Joji Thomas Eapen

改变

"plugins": [
    "@babel/plugin-proposal-class-properties"
  ]

"plugins": [
    [
      "@babel/plugin-proposal-class-properties",
      {
        "loose": true
      }
    ]
  ]

这对我有用


npm i --save-dev @babel/plugin-proposal-class-properties
这对我不起作用。我没有弹出反应应用程序
Ubuntu 18 - 我必须将 .babelrc 重命名为 babel.config.js 并使用 module.export,如 github 上所讨论的 stackoverflow.com/questions/53916434/… github.com/babel/babel/issues/7879#issuecomment-419732313
Test suite failed to run; .loose is not a valid Plugin property
@DavidCallanan 来解决这个问题,只需删除第二个参数 ({"loose": true}}
R
Raz Buchnik

首先安装:@babel/plugin-proposal-class-properties 作为开发依赖:

npm install @babel/plugin-proposal-class-properties --save-dev

然后编辑你的 .babelrc ,让它完全像这样:

{
  "presets": [
      "@babel/preset-env",
      "@babel/preset-react"
  ],
  "plugins": [
      [
        "@babel/plugin-proposal-class-properties"
      ]
  ]
}

.babelrc 文件位于 package.json 所在的根目录中。

请注意,您应该重新启动 webpack 开发服务器以使更改生效。


这个对我有用,谢谢。我认为是 babel 7.0+ 的解决方案
在使用 React 18 的 IDE 中对我不起作用。React 应用程序确实可以工作,但是每次在 IDE 中扫描文件时都会出现一个丑陋的错误。
反应 17,就是这样。
我是反应开发的新手。如何重新启动 webpack 开发服务器?我运行 npm start 但这个解决方案对我不起作用?
C
Community

webpack项目解决方案

我只是通过将 @babel/plugin-proposal-class-properties 添加到 webpack 配置插件中来解决这个问题。我的 webpack.config.js 的模块部分如下所示

module: {
    rules: [
        {
            test: path.join(__dirname, '.'),
            exclude: /(node_modules)/,
            loader: 'babel-loader',
            options: {
                presets: ['@babel/preset-env',
                          '@babel/react',{
                          'plugins': ['@babel/plugin-proposal-class-properties']}]
            }
        }
    ]
}

这应该是您使用 webpack 时的正确答案,因为有很多配置文件(如 webpack.config.js、package.json 和 .babelrc)并不好 - github.com/babel/babel/issues/8655#issuecomment-419795548
完美地为我工作 - 几天来对此感到困惑......非常感谢。
webpack.config.js 是哪一个?我目前得到 3 个。
@BurakKaymakci 您应该在 react 根文件夹中只有一个 webpack.config.js
A
Awn Ali
{
    "presets": [
        "@babel/preset-env",
        "@babel/preset-react"
    ],
    "plugins": [
        [
          "@babel/plugin-proposal-class-properties"
        ]
    ]
}

用上面的代码替换你的 .babelrc 文件。它为我解决了这个问题。


如果您已经弹出 create-react-app,请使用此配置更改 webpack.config.demo 和 package.json 中的任何配置。这意味着运行 npm install --save-dev @babel/preset-env @babel/preset-react @babel/plugin-proposal-class-properties
这是直截了当的。碰巧我错过了 @babel/plugin-proposal-class-properties 依赖项。
它有效,但请确保先安装 @babel/plugin-proposal-class-properties
S
Sahana

在我的工作环境根目录中,.babelrc 文件不存在。但是,在 package.json 中的以下条目解决了该问题。

"babel": {
"presets": [
  "@babel/preset-env",
  "@babel/preset-react"
],
"plugins": [
  "@babel/plugin-proposal-class-properties"
]}

注意:在执行 npm 或 yarn 命令之前,不要忘记退出控制台并重新打开。


n
nh Dalim

有两种处理反应状态的方法:

选项 1:只需添加到 package.json:

"babel": {
        "presets": [
            "@babel/preset-env",
            "@babel/preset-react"
        ],
        "plugins": [
            "@babel/plugin-proposal-class-properties"
        ]
    }

选项 2:

1. 在根文件夹中创建一个名为 .babelrc 的文件。

在 .babelrc 中写入:

{ "plugins": ["@babel/plugin-proposal-class-properties"] }

跑:

npm i @babel/plugin-proposal-class-properties

3.运行:

npm run dev
or
npm run watch

M
Mo Hemati

经过近 3 个小时的搜索并在同一个错误上花费时间后,我发现我正在为 React 使用名称导入:

import { React } from 'react';

这是完全错误的。只需将其切换为:

import React from 'react';

所有错误都消失了。我希望这可以帮助别人。这是我的 .babelrc:

{
  "presets": [
    "@babel/preset-env",
    "@babel/preset-react"
  ],
  "plugins": [
      "@babel/plugin-proposal-class-properties"
  ]
}

webpack.config.js

const path = require('path');
const devMode = process.env.Node_ENV !== 'production';
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
module.exports = {
  entry: './src/App.js',
  devtool: 'source-map',
  output: {
    path: path.resolve(__dirname, 'public'),
    filename: 'App.js'
  },
  mode: 'development',
  devServer: {
    contentBase: path.resolve(__dirname, 'public'),
    port:9090,
    open: 'google chrome',
    historyApiFallback: true
  },
  module: {
    rules: [
      {
        test: /\.m?js$/,
        exclude: /node_modules/,
        use: {
          loader: 'babel-loader'
        }
      },{
        test: /\.(sa|sc|c)ss$/,
        use: [
          devMode ? 'style-loader' : MiniCssExtractPlugin.loader,
          {
            loader: 'css-loader',
            options: {
              modules: true,
              localIdentName: '[local]--[hash:base64:5]',
              sourceMap: true
            }
          },{
            loader: 'sass-loader'
          }
        ]
      }
    ]
  },
  plugins: [
    new MiniCssExtractPlugin({
      filename: devMode ? '[name].css' : '[name].[hash].css',
      chunkFilename: devMode ? '[id].css' : '[id].[hash].css'
    })
  ]
}

package.json

{
  "name": "expense-app",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "build": "webpack",
    "serve": "webpack-dev-server"
  },
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "@babel/cli": "^7.1.2",
    "@babel/core": "^7.1.2",
    "@babel/plugin-proposal-class-properties": "^7.1.0",
    "@babel/preset-env": "^7.1.0",
    "@babel/preset-react": "^7.0.0",
    "babel-loader": "^8.0.4",
    "css-loader": "^1.0.0",
    "mini-css-extract-plugin": "^0.4.3",
    "node-sass": "^4.9.3",
    "react-router-dom": "^4.3.1",
    "sass-loader": "^7.1.0",
    "style-loader": "^0.23.1",
    "webpack": "^4.20.2",
    "webpack-cli": "^3.1.2",
    "webpack-dev-server": "^3.1.9"
  },
  "dependencies": {
    "normalize.css": "^8.0.0",
    "react": "^16.5.2",
    "react-dom": "^16.5.2"
  }
}

这个答案对我来说似乎无关紧要。无论您使用什么插件,错误的导入都是错误的导入。
感谢您的反馈@MarcoFaustinelli。错误的导入是此错误的原因之一。如此简单和基本的问题,但可能发生在每个人身上。答案是问题的指南。
赞成不是因为它对我有用,而是因为它帮助我理解了问题所在 - 此错误消息不是很具体。
A
Aakash

state 移入 constructor function 对我有用:

...
class MyComponent extends Component {
  constructor(man) {
    super(man)
    this.state = {}
  }
}
...

祝你好运...


i
iTech

安装 plugin-proposal-class-properties npm install @babel/plugin-proposal-class-properties --save-dev

通过添加 'plugins' 来更新你的 webpack.config.js: ['@babel/plugin-proposal-class-properties']}]


有关如何添加“插件”的详细信息,请参阅this page
这样做会给我一个类似于 Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema. - configuration.plugins[1] should be one of these: object { apply, … } | function -> Plugin of type object or instanceof Function Details: * configuration.plugins[1] should be an object. -> Plugin instance * configuration.plugins[1] should be an instance of function -> Function acting as plugin 的错误
F
Fabrizio Bertoglio

我发现我的 .babelrc 被忽略的问题,但是我创建 babel.config.js 并添加以下内容:

module.exports = {
  plugins: [
    ['@babel/plugin-proposal-decorators', { legacy: true }],
    ['@babel/plugin-proposal-class-properties', { loose: true }],
    '@babel/plugin-syntax-dynamic-import',
    '@babel/plugin-transform-regenerator',
    [
      '@babel/plugin-transform-runtime',
      {
        helpers: false,
        regenerator: true,
      },
    ],
  ],
  presets: [
    "@babel/preset-flow",
    'module:metro-react-native-babel-preset',
  ],
};

它适用于 React Native 应用程序,我认为这也将有助于 React 应用程序。


module.exports = { "presets": ["module:metro-react-native-babel-preset"], "plugins": ["@babel/plugin-proposal-class-properties"] } 对我来说已经足够了。你能更新你的答案吗?我们也应该理解为什么 .babelrc 被忽略了
@FabrizioBertoglio Babel 7 不再自动加载 .babelrc。 Babel 7 中的新功能是“根”目录的概念。对于项目范围的配置,Babel 会自动搜索“babel.config.js”
z
zeia soroush

根据 this GitHub 问题,如果您使用 create-react-app,您应该将您的 .babelrcbabel.config.js 配置复制到 webpack.config.js 并删除这些配置。因为 htis 有两行代码 babelrc: false,configFile: false, 您在 babelrc 中的配置, ..没用。并且您的 webpack.config.js 在您的 ./node_madules/react-scripts/config 文件夹中,我这样解决了我的问题:

{
              test: /\.(js|mjs)$/,
              exclude: /@babel(?:\/|\\{1,2})runtime/,
              loader: require.resolve('babel-loader'),
              options: {
                babelrc: false,
                configFile: false,
                compact: false,
                presets: [
                  [
                    require.resolve('babel-preset-react-app/dependencies'),
                    { helpers: true },

                  ],
                  '@babel/preset-env', '@babel/preset-react'
                ],
                plugins: ['@babel/plugin-proposal-class-properties'],
                .
                .
                .

您是否在反应脚本中编辑了 webpack 配置?那只会导致它在下一个 npm i 中被覆盖?然后应该弹出。
我只是做了 GitHub 页面上提到的任何事情。当时解决了我的问题。
S
Souradeep Nanda

我明确地使用了 babel 解析器。以上解决方案都不适合我。这行得通。

const ast = parser.parse(inputCode, {
      sourceType: 'module',
      plugins: [
        'jsx',
        'classProperties', // '@babel/plugin-proposal-class-properties',
      ],
    });

我应该在哪里添加此代码?你使用 react js 吗?
这段代码是如果你正在开发一个 babel 插件。是的,我的插件适用于 JSX。 github.com/Ghost---Shadow/i18nize-react
S
Sylvester

我正在使用纱线。我必须执行以下操作来克服错误。

yarn add @babel/plugin-proposal-class-properties --dev

A
Angel F Syrus

添加

"plugins": [
    [
      "@babel/plugin-proposal-class-properties"
    ]
  ]

进入 .babelrc 对我有用。


d
dippas

yarn add --dev @babel/plugin-proposal-class-properties

或者

npm install @babel/plugin-proposal-class-properties --save-dev .babelrc


N
Nostromo

对于弹出的 create-react-app 项目

我刚刚解决了我的案例,在我的 webpack.config.js 中添加了以下几行:

  presets: [
    [
      require.resolve('babel-preset-react-app/dependencies'),
      { helpers: true },
    ],
    /* INSERT START */
    require.resolve('@babel/preset-env'),
    require.resolve('@babel/preset-react'),
      {
      'plugins': ['@babel/plugin-proposal-class-properties']
    } 
    /* INSERTED END */
  ],

W
Wasi Sadman

如果有人在 react-native-web-monorepo 之后处理 monorepo,那么您需要在 packages/web 中提交 config-overrides.js 文件。您需要在该文件中添加 resolveApp('../../node_modules/react-native-ratings'), ...

我完整的 config-override.js 文件是

const fs = require('fs');
const path = require('path');
const webpack = require('webpack');

const appDirectory = fs.realpathSync(process.cwd());
const resolveApp = relativePath => path.resolve(appDirectory, relativePath);

// our packages that will now be included in the CRA build step
const appIncludes = [
    resolveApp('src'),
    resolveApp('../components/src'),
    resolveApp('../../node_modules/@react-navigation'),
    resolveApp('../../node_modules/react-navigation'),
    resolveApp('../../node_modules/react-native-gesture-handler'),
    resolveApp('../../node_modules/react-native-reanimated'),
    resolveApp('../../node_modules/react-native-screens'),
    resolveApp('../../node_modules/react-native-ratings'),
    resolveApp('../../node_modules/react-navigation-drawer'),
    resolveApp('../../node_modules/react-navigation-stack'),
    resolveApp('../../node_modules/react-navigation-tabs'),
    resolveApp('../../node_modules/react-native-elements'),
    resolveApp('../../node_modules/react-native-vector-icons'),
];

module.exports = function override(config, env) {
    // allow importing from outside of src folder
    config.resolve.plugins = config.resolve.plugins.filter(
        plugin => plugin.constructor.name !== 'ModuleScopePlugin'
    );
    config.module.rules[0].include = appIncludes;
    config.module.rules[1] = null;
    config.module.rules[2].oneOf[1].include = appIncludes;
    config.module.rules[2].oneOf[1].options.plugins = [
        require.resolve('babel-plugin-react-native-web'),
        require.resolve('@babel/plugin-proposal-class-properties'),
    ].concat(config.module.rules[2].oneOf[1].options.plugins);
    config.module.rules = config.module.rules.filter(Boolean);
    config.plugins.push(
        new webpack.DefinePlugin({ __DEV__: env !== 'production' })
    );

    return config
};

H
Hamfri

我在尝试用 babel 转换一些 jsx 时遇到了同样的问题。以下是对我有用的解决方案。您可以将以下 json 添加到您的 .babelrc

{
  "presets": [
    [
      "@babel/preset-react",
      { "targets": { "browsers": ["last 3 versions", "safari >= 6"] } }
    ]
  ],
  "plugins": [["@babel/plugin-proposal-class-properties"]]
}

A
Abhishek Gupta

对于带有 webpack 的 react 项目:

执行: npm install @babel/plugin-proposal-class-properties --save-dev 在 package.json 和 webpack.config.js 所在的根文件夹中创建 .babelrc(如果不存在)文件,并添加以下代码:

{“预设”:[“@babel/preset-env”,“@babel/preset-react”],“插件”:[[“@babel/plugin-proposal-class-properties”,{“松散”:真} ] ] }

将以下代码添加到 webpack.config.js 文件中:

{测试:/\.jsx?$/,排除:/node_modules/,加载器:'babel-loader',查询:{预设:[“@babel/preset-env”,“@babel/preset-react”]} , 解决: { 扩展名: ['.js', '.jsx'] } }

关闭终端并再次运行 npm start。


i
ismail

你必须安装

npm install @babel/core @babel/plugin-proposal-class-properties @babel/preset-env @babel/preset-react babel-loader

更改输入和输出

const path = require('path')        
module.exports = {
  entry: path.resolve(__dirname,'src', 'app.js'),
  output: {
    path: path.resolve(__dirname, "public","dist",'javascript'),
    filename: 'bundle.js'
  },
  module: {
    rules: [
      {
        test: /\.(jsx|js)$/,
        exclude: /node_modules/,
        use: [{
          loader: 'babel-loader',
          options: {
            presets: [
              ['@babel/preset-env', {
                "targets": "defaults"
              }],
              '@babel/preset-react'
            ],
            plugins: [
              "@babel/plugin-proposal-class-properties"
            ]
          }
        }]
      }
    ]
  }
}

m
martin

我为 src/components 创建了一个符号链接 -> ../../components 导致 npm start 发疯并停止将 src/components/*.js 解释为 jsx,从而给出相同的错误。来自官方 babel 的所有修复它的说明都是无用的。当我复制回组件目录时,一切都恢复正常!


你找到解决办法了吗?我有一个以正常方式安装的依赖项的应用程序,我可以对其进行测试,但是当我使用纱线链接中的库时,它抛出了错误
@mdsadiq 抱歉,不,没有测试最新版本,票仍然在这里开放:github.com/facebook/create-react-app/issues/9040也许你可以投票,谢谢。
允许 react-scripts 使用符号链接的解决方法:github.com/facebook/create-react-app/pull/7993/files
D
Dhananjay Badaya

确保您没有错误地导入 import BrowserRouter from "react-router-dom/modules/BrowserRouter"; 而不是 import {BrowserRouter} from "react-router-dom";


S
Steffi

如果在 typescript 更新后发生这种情况,只需将 useDefineForClassFields: false 添加到 tsconfig 文件。

请参阅:https://www.typescriptlang.org/tsconfig#useDefineForClassFields


关注公众号,不定期副业成功案例分享
关注公众号

不定期副业成功案例分享

领先一步获取最新的外包任务吗?

立即订阅