我上周开始了一个项目。在回到我的团队之前,我想评论我的代码。
/* Just for the Syntax outlook */
class Foo extends React.Components {
constructor(props) {
super(props);
}
render() {
return (
<div className='bar'>
/*
<p> cannot commit!!!! </p>
** Following will throw error when bundled with webpack
*/
// This throws error as well.
<div>
)
}
}
&#13;
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.11/d3.min.js"></script>
&#13;
代码可能看似评论正在运行,但当前的JSbin设置未在ES6上设置。当您使用jsx通过webpack运行捆绑它时会抛出错误。
以下是以下堆栈
答案 0 :(得分:12)