如何在React中访问表列值

时间:2018-09-27 02:57:56

标签: reactjs axios

我有创建表并插入了值。现在,我需要访问一些表数据并将其分配给变量以进行计算。在这里,我需要计算这些列值的总和并分配给标签。所以我可以知道吗??

这是我创建的表。

  render(){
      return (
            <tr>
                <td data-th="Product">
                    <div className="row">
                        <div className="col-sm">
                            <h4 className="nomargin">{this.DrugsDetailsRequest.item_name}</h4>
                        </div>
                    </div>
                </td>
                <td data-th="Price"> Rs: {this.DrugsDetailsRequest.totalPrice}</td>
                <td data-th="Quantity">
                    <input name="textInputValue1" type="number" className="form-control text-center"  onChange={ this.handleChange } />
                </td>
                <td data-th="Subtotal" className="text-center"> <input name="textInputValue2" type="number" className="form-control text-center"  onChange={ this.handleChange } value={this.DrugsDetailsRequest.totalPrice*this.state.textInputValue1}/></td>
                <td className="actions" data-th="">
                    <button className="btn btn-info btn-sm mr-3" onClick={ this.publish }><i className="fa fa-refresh"></i>Refresh</button>
                    <button className="btn btn-danger btn-sm" onClick={(e) => this.delete(this.DrugsDetailsRequest._id)}><i className="fa fa-trash-o">Delete</i></button>
                </td>
            </tr>

    );
}

1 个答案:

答案 0 :(得分:0)

您的问题不清楚,但这是我的理解

一个简单的解决方案是。返回前在渲染器中执行

"reconnecting-websocket": "^4.0.0-rc5"