我刚接触使用react并遇到了所述问题:
未捕获的TypeError:无法读取null的属性“setState”。
基本上我要做的是,用户可以点击三个不同的标题,点击后,它将呈现特定于该标题的特定模板。这是我正在使用的代码,它给了我这个错误:
class Selection extends React.Component {
constructor(props) {
super(props);
this.state = {selections: [], donateActive: true, fundraiseActive: false, speakActive: false };
}
componentDidMount() {
this.setState({
selections: selectionData.selections
})
}
componentWillUnMount(){
console.log("unmounted!");
}
donateOnClick() {
this.setState({ donateActive: true, fundraiseActive: false, speakActive: false});
}
fundraiseOnClick() {
this.setState({ fundraiseActive: true, donateActive: false, speakActive: false});
}
speakOnClick() {
this.setState({ speakActive: true, fundraiseActive: false, donateActive: false});
}
donateTemplate() {
return (
<div>
<h1>donate template</h1>
</div>
)
}
fundraiseTemplate() {
return (
<div>
<h1>fundraise template</h1>
</div>
)
}
speakTemplate() {
return (
<div>
<h1>speak template</h1>
</div>
)
}
render() {
return(
<div>
<div className="col-sm-6 col-sm-push-6 right">
<div className="right-content-container">
<div className="selections">
<h3>You can</h3>
<h1 onClick={this.donateOnClick} className="selection active" id="selection-donate">donate</h1>
<h1 onClick={this.fundraiseOnClick} className="selection" id="selection-fundraise">fundraise</h1>
<h1 onClick={this.speakOnClick} className="selection" id="selection-speak">speak up</h1>
<hr></hr>
</div>
<div>
{
if (this.state.donateActive) {
this.donateTemplate()
}
if (this.state.fundraiseActive) {
this.fundraiseTemplate()
}
if (this.state.speakActive) {
this.speakTemplate()
}
}
</div>
</div>
</div>
<div className="col-sm-6 col-sm-pull-6 left">
<div className="left-content-container">
<img className="img-responsive hidden-xs" src="./images/selections/.jpg" alt=""/>
<img className="img-responsive hidden-sm hidden-md hidden-lg" src="./images/selections/.jpg" alt=""/>
</div>
</div>
</div>
);
}
}
此外,我不确定我是否能够在IF
内部使用return()
语句,就像我现在在render()
方法中所做的那样,是否有更好的这样做的方法?
非常感谢任何帮助。
答案 0 :(得分:7)
您的问题与this
绑定有关。除了构造函数和生命周期方法之外,React不会自动将React组件绑定到this
的值。要解决此问题,请在构造函数中为要绑定this
constructor(props) {
super(props);
this.donateOnClick = this.donateOnClick.bind(this);
// other function bindings
}
至于您的if
语句问题,只要if语句包含在{}
中,您就可以使用它们。花括号向JSX解析器指示它们内部的任何内容都应该被评估为javascript,因此任何有效的javascript都可以放在它们内部。
更新:不确定为什么这些if
语句会抛出意外的令牌错误,但请尝试这样做:
<div>
{ this.state.donateActive ? this.donateTemplate() : null }
{ this.state.fundraiseActive ? this.fundraiserTemplate() : null }
{ this.state.speakactive ? this.speakTemplate() : null }
</div>
那是使用三元if语句。如果您不熟悉语法:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Conditional_Operator
如果这不起作用,请使用更详细的错误消息更新您的问题。特别是,我很想知道它说的是什么标记是意外的
答案 1 :(得分:1)
如果您按照以下方式声明方法,也可以在课程中自动编写您的方法:
donateOnClick = () => {
this.setState({ donateActive: true, fundraiseActive: false, speakActive: false});
}
fundraiseOnClick = () => {
this.setState({ fundraiseActive: true, donateActive: false, speakActive: false});
}
speakOnClick = () => {
this.setState({ speakActive: true, fundraiseActive: false, donateActive: false});
}