gpt4 book ai didi

javascript - babel watch 语法错误 : Unexpected token

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:22:38 25 4
gpt4 key购买 nike

当我使用 babel 观看 jsx 文件时。但是有一个语法错误。

之前我用react-tools看,一切正常。

SyntaxError: assets/js/chat/chat.jsx: Unexpected token (258:16)
256 | if (this.props.isOpen) {
257 | return (
> 258 | <div className="modal-overlay">
| ^
259 | <ReactCSSTransitionGroup transitionName={this.props.transitionName}>
260 | <div className="chat-modal">
261 | {this.props.children}

以下是我的代码。

var ReactCSSTransitionGroup = React.addons.CSSTransitionGroup;
var Modal = React.createClass({
render: function() {
if (this.props.isOpen) {
return (
<div className="modal-overlay">
<ReactCSSTransitionGroup transitionName={this.props.transitionName}>
<div className="chat-modal">
{this.props.children}
</div>
</ReactCSSTransitionGroup>
</div>
)
} else {
return <div className="modal-overlay"><ReactCSSTransitionGroup transitionName={this.props.transitionName}/></div>
}
}
});

最佳答案

前几天我遇到了类似的问题。看来 babel 现在需要一些额外的插件来配合 react。

请参阅此 SO 问题中的答案:babel-loader jsx SyntaxError: Unexpected token

关于javascript - babel watch 语法错误 : Unexpected token,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33647314/

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