反应 - 预填充形式

时间:2016-09-15 16:22:42

标签: forms reactjs

我需要预填充表单,以便用户可以编辑他们之前创建的博客。我正在寻找在React中做到这一点的最佳实践方法。我目前通过props将值传递给组件,然后将state属性设置为等于props属性,但我已经读过这是一个反模式。我理解'事实的来源'。但是有什么更好的方法呢?我现在不想使用redux-form。下面是我的标题组件,下面是我从父母那里调用它的方式。这一切都有效,但有没有更好的方法,以避免将状态属性设置为props属性?

import React, { Component, PropTypes} from 'react';

export default class DocumentTitle extends Component{
  constructor(props) {
      super(props);
      this.state = {inputVal:this.props.publication.document_title}
      this.handleChange = this.handleChange.bind(this)
  }

  handleChange(event) {
    this.setState({inputVal: event.target.value});
  }

  componentWillReceiveProps(nextProps){
    this.setState({inputVal: nextProps.publication.document_title})
  }

  render (){
    return (
      <div >
        <label>Title</label>
        <div>
          <input onChange={this.handleChange} id="doc_title" type="text" value={this.state.inputVal}/>
        </div>
      </div>
    )    
  }
}

来自父母的电话:

 <DocumentTitle publication={this.props.publication} />

1 个答案:

答案 0 :(得分:4)

如果在父母中维护发布,则不需要维护状态,除非有其他原因:验证一个。

输入可能是一个不受控制的组件。输入的onBlur可用于更新父级。

<input 
  onBlur={e => this.props.onTitleChange(e.target.value)}
  id="doc_title" 
  type="text" 
  defaultValue={this.props.publication.document_title} />

父组件应更新发布状态。

<DocumentTitle 
  publication={this.state.publication} 
  onTitleChange={this.handleTitleChange} />