我正在使用反应,我试图使用传播语法。出于某种原因,它不起作用,它会出错:
const { className, children, ...otherprops } = this.props;
知道我做错了吗?
答案 0 :(得分:4)
您收到Unexpected token
,因为您遗漏了一个babel预设stage-0
Without stage-0, it doesn't work
要添加它,您必须
1º安装
npm install --save-dev babel-preset-stage-0
2º将其添加到.babelrc
{
"presets": ["react","es2015","stage-0"]
}