我有一个使用组件显示行的表单,以便表单页面具有n个组件页面。

      <form onSubmit={this.onSubmit} loading={loading} >
  <table className="ui celled table" border="1">
     <thead>
      <tr>
        <th >Status</th>
        <th >Date </th>
        <th >ID</th>
        <th >Plan</th>
      </tr>
    </thead>
    <tbody>
         {this.state.claims.map ( claim => <ClaimRow claim= { claim } updateClaims={this.updateClaims}  /> ) }
    </tbody>
    <tfoot className="full-width">
      <tr>
        <th colspan="4">
          <div className="ui small button">
            <Button Primary>Approve Selected</Button>
          </div>
          <div className="ui right floated button" >
              Next
                  <i class="right arrow icon"> </i>
          </div>
          <div className="ui right floated button" >
                  <i class="left arrow icon"></i>
             Prev
          </div>
        </th>
      </tr>
    </tfoot>
  </table>
  </form>


该页面正确显示ClaimRow,并且每一行都有一个OnChange事件处理程序。在onChange事件处理程序/行中,我想调用updateClaims来设置父组件中单个行的状态。这样,如果有人单击“批准”,则父组件的状态将所有更改准备发送给数据库。

当我单击“ onChange”时,我的onChange处理程序中出现一个错误,它无法引用updateClaims。

“ TypeError:_this.updateClaims不是函数”

我的onChange处理程序

  onChange = e => {
    this.setState({status: e.target.value} );
    this.updateClaims(this.state._id,this.state);


}

最佳答案

它应该是

this.props.updateClaims(this.state._id,this.state)

在脚本中

<ClaimRow claim= { claim } updateClaims={this.updateClaims} />

updateClaims作为prop传递给ClaimRow组件,并且在其中的props上可用。

要访问它,在类组件中,您需要在this.props上调用它

10-08 08:45