当我在IntelliJ中切换到Scala 2.11.8 SDK时,我在编译期间收到以下错误。当我在IntelliJ中使用具有相同代码的2.10.6 SDK时,编译很好。
有关如何解决此问题的任何想法?
class MainComponent extends Component {
state = {
index: 0,
}
onBlueButtonClick() {
this.setState({ index: 1 });
}
render() {
return (
<div>
<div onClick={() => this.onBlueButtonClick()}>Click me!<div />
<SwipeableView index={this.state.index}>
<BlueView />
<GreenView />
<RedView />
<SwipeableView />
</div>
);
}
}
答案 0 :(得分:3)
事实证明我在build.sbt中有一个scalaVersion不匹配。一旦我更新它以使其成为IntelliJ中Scala SDK集的确切版本,错误就消失了。
答案 1 :(得分:3)
遇到同样的问题,我确认它来自Scala版本不匹配。我只想在IntelliJ中添加我必须做的(在我的情况下):
右键点击您的项目 - &gt; maven - &gt;重新导入
之后工作得很好