我試圖從一個陣營無國籍子組件(AddConditionSelect
)到母部件(AddConditionDashboard
)通過輸入值字段(conditionTitle
),將保持我的狀態。
問題
我跟着React documentation所示的模型,但他們使用的是裁判,這隻有在組件是有狀態的作品。我不想在子組件中設置任何狀態,但仍然能夠訪問父項中的輸入。
在目前的形式中,我得到一個警告,無狀態函數組件不能被給予引用,導致道具爲空和未定義。
父組件:
import AddConditionSelect from '../containers/AddConditionSelect.js';
class AddConditionDashboard extends React.Component {
constructor(props) {
super(props);
this.state = {
conditionTitle: '',
conditionType: ''
};
}
handleUserInput({conditionTitleInput}) {
this.setState({
conditionTitle:conditionTitle
})
}
render() {
const {error, segmentId} = this.props;
return (
<div>
<AddConditionSelect segmentId={segmentId} conditionTitle={this.state.conditionTitle} onUserInput={this.handleUserInput} />
<PanelFooter theme="default">
<Button backgroundColor="primary" color="white" inverted={true} rounded={true} onClick={(event) => this.onSubmit(event)}>
Next Step
</Button>
</PanelFooter>
</div>
);
}
}
export default AddConditionDashboard;
子組件:
class AddConditionSelect extends React.Component {
onInputChange: function() {
this.props.onUserInput(
this.refs.conditionTitleInput.value,
)
},
render() {
const {error} = this.props;
return (
<div>
<Panel theme="info">
<Divider />
Please enter a name {error ? <Message inverted={true} rounded={true} theme="error">{error}</Message> : null}
<Input value={this.props.conditionTitle} ref="conditionTitleInput" label="" type="text" buttonLabel="Add Condition" name="add_segment" onChange={this.onInputChange} placeholder="Condition Title"/>
</Panel>
</div>
);
}
}
export default AddConditionSelect;
您能不能告訴我們您的輸入組件?這將有所幫助。 – QoP
輸入組件只是一個Rebass組件 - http://jxnblk.com/rebass/#Input – Dan