ReactJS module构建失败:SyntaxError: Unexpected token - ReactDOM.render

IT技术 javascript reactjs react-dom
2021-03-29 04:39:21

为什么我在下面收到此错误?我的声明ReactDOM.render(<App />, container);是 100% 合法的代码。

我的 github 仓库:https : //github.com/leongaban/react_starwars

在此处输入图片说明

app.js 文件

import react from 'react'
import ReactDom from 'react-dom'
import App from 'components/App'

require('index.html');

// Create app
const container = document.getElementById('app-container');

// Render app
ReactDOM.render(<App />, container);

组件/应用程序文件

import React from 'react'

const App = () =>
  <div className='container'>
    <div className='row'>

    </div>
    <div className='row'>

    </div>
  </div>;

export default App; 

我的 webpack.config

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

module.exports = {
entry: [
  './src/app.js'
],
output: {
  path: path.resolve(__dirname, './build'),
  filename: 'app.bundle.js',
},
module: {
  loaders: [
    {
      test: /\.html$/,
      loader: 'file-loader?name=[name].[ext]',
    },
    {
      test: /\.jsx?$/,
      exclude: /node_modules/,
      loader: 'babel-loader',
    },
  ],
},
plugins: [
  new webpack.NamedModulesPlugin(),
]
};
6个回答

使用它作为你的 webpack 配置文件

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

module.exports = {
    entry: [
        './src/app.js'
    ],
    output: {
        path: path.resolve(__dirname, './build'),
        filename: 'app.bundle.js',
    },
    module: {
        loaders: [
            {
                test: /\.html$/,
                loader: 'file-loader?name=[name].[ext]',
            },
            {
                test: /\.jsx?$/,
                exclude: /node_modules/,
                loader: 'babel-loader',
            query: {
                presets: ['es2015', 'react']
            }
        },
    ],
},
plugins: [
    new webpack.NamedModulesPlugin(),
]
};

你缺少预设

实际上现在 webpack 2 module.loader 已被弃用,取而代之的是 module.rules
2021-06-09 04:39:21
谢谢!就是这样......我正在学习一个旧项目的教程。我较新的 React 项目运行良好,所以我使用的是较旧的过时 webpack.config。就像其他人所说的那样,我的一些进口商品没有大写。谢谢!我使用这个更现代的 webpack.config 修复了该应用程序并重命名了我的导入,现在它可以工作了。还有3分钟!
2021-06-18 04:39:21
我正在使用 .babelrc 它适用于另一个应用程序但不适用于另一个应用程序。
2021-06-19 04:39:21
哪个相当于预设:['es2015', 'react'] 关于 babel 7?
2021-06-20 04:39:21

我遇到了同样的错误,我只需要将 .babelrc 文件添加到包含以下内容的项目路径(与 package.json 相同的位置):

{
    "presets": [
        "env", 
        "react"
    ],
    "plugins": [
        "transform-class-properties"
    ]
}
这是它为我,但我不得不改变env@babel/env,并reactreact-app我正在使用一个带有 Create React App + TypeScript + Rescripts 的项目(github.com/harrysolovay/rescripts
2021-06-13 04:39:21

为 jsx 语法安装 babel-preset-react。

npm install babel-preset-react

预设

loaders: [{
            test: /\.jsx?$/,
            exclude: /node_modules/,
            loader: 'babel-loader',
            query: {
                presets: ['react', 'es2015']
            }
        }
    ]

或者,您可以将预设放在项目根目录的 .babelrc 文件中。当然你需要先安装它。

像这样 /path/to/your/project/.babelrc

{ "presets": ["@babel/preset-env", "@babel/preset-react"] }

.babelrc在根文件夹中添加以下内容,并确保它是“预设”而不是“预设”

{
    "presets" : ["@babel/preset-env", "@babel/preset-react"]
}

这是我的webpack.config.js供参考:

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

module.exports = {
    entry: './src/index.js',
    mode: 'development',
    module: {
        rules: [
            {
                test: /\.(js|jsx)$/,
                exclude: /(node_modules)/,
                loader: 'babel-loader',
                options: { presets: ["@babel/env"]}
            },
            {
                test: /\.css$/,
                use: ["style-loader", "css-loader"]
            }
        ]
    },
    resolve: { extensions: ['*', '.js', '.jsx']},
    output: {
        path: path.resolve(__dirname, 'dist/'),
        publicPath: '/dist/',
        filename: 'bundle.js'
    },
    devServer: {
        contentBase: path.join(__dirname, 'public/'),
        port: 3000,
        publicPath: 'http://localhost:3000/dist/',
        hotOnly: true
    },
    plugins: [new webpack.HotModuleReplacementPlugin()]
}

Babel-loader v8 需要@babel v7 才能工作 package.json

  "devDependencies": {
    "@babel/cli": "^7.10.4",
    "@babel/core": "^7.10.4",
    "@babel/preset-env": "^7.10.4",
    "@babel/preset-react": "^7.10.4",
    "babel-loader": "^8.1.0"}