所以我正在使用create-react-app访问我的第一个React应用,并且我尝试根据this GitHub项目创建一个多阶段表单。特别是AccountFields和Registration部分。
该项目似乎是用更旧版本的React编写的,所以我不得不尝试更新它 - 这就是我到目前为止所做的:
App.js:
import React, { Component } from 'react';
import './App.css';
import Activity from './Activity';
var stage1Values = {
activity_name : "test"
};
class App extends Component {
constructor(props) {
super(props);
this.state = {
step: 1
};
};
render() {
switch (this.state) {
case 1:
return <Activity fieldValues={stage1Values} />;
}
};
saveStage1Values(activity_name) {
stage1Values.activity_name = activity_name;
};
nextStep() {
this.setState({
step : this.state.step + 1
})
};
}
export default App;
Activity.js:
import React, { Component } from 'react';
class Activity extends Component {
render() {
return (
<div className="App">
<div>
<label>Activity Name</label>
<input type="text" ref="activity_name" defaultValue={this.props.stage1Values} />
<button onClick={this.nextStep}>Save & Continue</button>
</div>
</div>
);
};
nextStep(event) {
event.preventDefault();
// Get values via this.refs
this.props.saveStage1Values(this.refs.activity_name.getDOMNode().value);
this.props.nextStep();
}
}
export default Activity;
我已经看了很多例子,这似乎是存储当前状态的正确方法(允许用户在表单的不同部分之间来回传递),然后存储这个阶段的价值观。当我点击Save & Continue
按钮时,收到错误消息Cannot read property 'props' of null
。我的意思是显然这意味着this
为空,但我不确定如何修复它。
我接近这个错误的方式吗?我发现的每个例子似乎都有完全不同的实现。我来自基于Apache的背景,所以这种方法一般我觉得很不寻常!
答案 0 :(得分:0)
nextStep中的this不是指向Activity而只是这样做
<button onClick={()=>this.nextStep()}>Save & Continue</button>
答案 1 :(得分:0)
将此绑定到 nextStep 函数:
constructor(props){
super(props);
this.nextSteps = this.nextSteps.bind(this);
}
或者在构造函数中:
{{1}}