所以我有这个组件
import React from 'react';
import ReactDOM from 'react-dom';
import NeoHeader from './header/NeoHeader';
import NeoLoginModal from './modal/NeoLoginModal';
class Neo extends React.Component {
constructor(props) {
super(props);
this.state = {loginModal: false};
}
render() {
return( <NeoHeader/> { this.state.loginModal ? <NeoLoginModal /> : null })
}
}
ReactDOM.render(
<Neo/>,
document.getElementById('react-wrapper')
);
正如您所看到的,当状态道具设置为true时,我试图显示组件NeoLoginModal。但是,使用Laravel mix构建会在{this..}
开始时出现意外的令牌错误。这在多个地方被记录为正确的方法,所以有什么错误?
答案 0 :(得分:2)
问题不在Laravel Mix中,而是在您的组件HTML结构中。在React
中,您无法将兄弟姐妹视为第一级元素。为了使代码工作,您应该使用父标记包装两个子组件,例如:
render() {
return (
<div>
<NeoHeader />
{ this.state.loginModal ? <NeoLoginModal /> : null }
</div>
);
}