jsx SyntaxError:意外的令牌

我是React + Webpack的初学者。

我在我的hello world网页应用程序里发现了一个奇怪的错误。

我在webpack中使用babel-loader来帮助我将jsx转换为js,但似乎babel不能理解jsx语法。

以下是我的依赖项:

"devDependencies": {
"babel-core": "^6.0.14",
"babel-loader": "^6.0.0",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"react": "^0.14.1"
}

这是我的webpack.config.js

var path = require('path');
module.exports = {
entry: ['webpack/hot/dev-server',path.resolve(__dirname, 'app/main.js')],
output: {
path: path.resolve(__dirname, 'build'),
filename: 'bundle.js'
},
module: {
loaders: [
{ test: /\.js$/, exclude: /node_modules/, loader: "babel-loader"}
]
}
};

这是我的app/main.js

var React = require("react");
React.render(<h1>hello world</h1>,document.getElementById("app"));

这是错误信息

ERROR in ./app/main.js
Module build failed: SyntaxError: ~/**/app/main.js: Unexpected token (2:13)
1 | var React = require("react");
> 2 | React.render(<h1>hello world</h1>,document.getElementById("app"));
|              ^
at Parser.pp.raise (~/**/node_modules/babylon/lib/parser/location.js:24:13)

谢谢你们。

339386 次浏览

添加“babel-preset-react”

npm install babel-preset-react

并在webpack.config.js的babel-loader中添加“presets”选项

(或者你可以把它添加到你的.babelrc或package.js: http://babeljs.io/docs/usage/babelrc/)

下面是一个webpack.config.js的例子:

{
test: /\.jsx?$/,         // Match both .js and .jsx files
exclude: /node_modules/,
loader: "babel",
query:
{
presets:['react']
}
}

最近Babel 6发布了,有一个重大变化: https://babeljs.io/blog/2015/10/29/6.0.0 < / p >

如果你正在使用react 0.14,你应该使用ReactDOM.render()(来自require('react-dom'))而不是React.render(): https://facebook.github.io/react/blog/#changelog

更新2018

规则。query已经被弃用,取而代之的是Rule.options。webpack 4的用法如下:

npm install babel-loader babel-preset-react

然后在你的webpack配置中(作为module.rules数组中的一个条目)。出口对象)

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

由于上面的答案仍然让有些人处于黑暗之中,下面是一个完整的webpack.config.js可能的样子:

var path = require('path');
var config = {
entry: path.resolve(__dirname, 'app/main.js'),
output: {
path: path.resolve(__dirname, 'build'),
filename: 'bundle.js'
},
module: {
loaders: [{
test: /\.jsx?$/,
loader: 'babel',
query:
{
presets:['es2015', 'react']
}
}]
},


};


module.exports = config;

我在从巴别塔5迁移到巴别塔6时遇到了类似的问题。

我只是运行babel编译src自由文件夹babel src --out-dir lib

我将分享我的巴别塔6的设置:

确保已安装以下babel 6 devDependencies

"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0"

将你的.babelrc文件添加到项目中:

{
"presets": ["es2015", "stage-0", "react"]
}

下面的方法帮助了我(包括react-hot, babel loader和es2015, react presets):

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

你可以在这里找到Henrik Joreteg (ampersandjs)制作的一个非常好的样板:https://github.com/HenrikJoreteg/hjs-webpack

然后在你的webpack.config.js

var getConfig = require('hjs-webpack')


module.exports = getConfig({
in: 'src/index.js',
out: 'public',
clearBeforeBuild: true,
https: process.argv.indexOf('--https') !== -1
})

对我来说,解决方案是用以下内容创建文件.babelrc:

{
"presets": ["react", "es2015", "stage-1"]
}

对于那些仍然可能面临添加jsx测试问题的人,为我修复了它

test: /\.jsx?$/,

这对我来说非常合适

{
test: /\.(js|jsx)$/,
loader: 'babel-loader',
exclude: /node_modules/,
query: {
presets: ['es2015','react']
}
},