我在组件中收到此错误:
解析错误:意外的令牌,预期为“,”
import React from 'react';
import logo from '../../Images/Logo.svg';
class Simulate extends React.Component{
render(){
return(
this.state.wentWrong?
(<div className="went-wrong-box">
<div className="went-wrong-title">
<div className="went-wrong-title__img">
<img src={logo} alt="Logo">
</div>
</div>
</div>)
:
(<div>
Other Content
</div>)
)
}
}
我非常确定image标记中的问题,尽管已经导入了src中使用的徽标,但是如果我用字符串替换src中的徽标,也会发生这种情况,但是如果我删除了图像,它就可以工作:
return(
this.state.wentWrong?
(<div className="went-wrong-box">
<div className="went-wrong-title">
<div className="went-wrong-title__img">
</div>
</div>
<div>)
:
(<div>
Other Content
</div>)
)
临摹微笑
相关分类