Javascript 表中的动态输入字段

Javascript 表中的动态输入字段,javascript,reactjs,react-redux,Javascript,Reactjs,React Redux,我试图将动态字段添加到react JS表中,每次用户从下拉列表中选择产品时,该表都会得到一个新行,该行必须有三个动态输入字段,我不知道如何管理它们的值和onChange。 代码见附件 状态管理的代码 this.state = { quantity: [], costPrice: [], total: [], key: 0, supplierId: "", productId: "", addedProducts:

我试图将动态字段添加到react JS表中,每次用户从下拉列表中选择产品时,该表都会得到一个新行,该行必须有三个动态输入字段,我不知道如何管理它们的值和onChange。 代码见附件

状态管理的代码

this.state = {
      quantity: [],
      costPrice: [],
      total: [],
      key: 0,
      supplierId: "",
      productId: "",
      addedProducts: []
    };

componentWillReceiveProps(nextProps) {
    if (nextProps.product.productId > 0) {
      let quantity = [...this.state.quantity, "1"];
      //quantity.concat("0");
      if (this.state.key == 0) {
        this.setState({
          addedProducts: this.state.addedProducts.concat(nextProps.product),
          quantity: quantity
        });
      } else {
        this.incrementKey();
        this.setState({
          addedProducts: this.state.addedProducts.concat(nextProps.product),
          quantity: quantity
        });
      }
    }
  }

  incrementKey() {
    this.setState(state => {
      return { key: state.key + 1 };
    });
  }

  onChange(event, key) {
    const obj = event.target.value;
    alert(this.state.quantity.length);
    if ([event.target.name] == "quantity") {
      //var total = event.target.value * this.state.costPrice;
      let quantity = [...this.state.quantity];
      quantity[key] = obj;
      this.setState({ quantity });
    } else if ([event.target.name] == "costPrice") {
      var total = this.state.quantity * event.target.value;
    }

    // this.setState({ [event.target.name]: event.target.value, total: total });
  }
视图部分的代码

{addedProducts.map(object => (
                        <TableRow key={object.productId}>
                          <TableCell>{object.sku}</TableCell>
                          <TableCell>{object.productName}</TableCell>
                          <TableCell>
                            <TextField
                              id={"quantityText" + object.sku}
                              name="quantity"
                              value={quantity[0]}
                              style={{ width: "60px" }}
                              onChange={e => onChange(e, 0)}
                              inputProps={{ "aria-label": "bare" }}
                            />
                          </TableCell>
                          <TableCell>
                            <TextField
                              id="costPriceText"
                              name={"costPrice" + object.sku}
                              value={costPrice}
                              style={{ width: "70px" }}
                              onChange={onChange}
                              inputProps={{ "aria-label": "bare" }}
                            />
                          </TableCell>
                          <TableCell>
                            <TextField
                              id="totalText"
                              name={"total" + object.sku}
                              value={total}
                              style={{ width: "80px" }}
                              onChange={onChange}
                              inputProps={{ "aria-label": "bare" }}
                            />
                          </TableCell>
                        </TableRow>
                      ))}
                    </TableBody>
{addedProducts.map(对象=>(
{object.sku}
{object.productName}
onChange(e,0)}
inputProps={{“aria标签”:“裸”}
/>
))}

是否绑定了eveny处理程序?请尝试以下操作:
onChange={e=>this.onChange(e,yourKey)}
您可能希望在映射数组时获取key,因此必须包含此代码
addedProducts.map((object,yourKey)=>…