我需要一点帮助。
我是新手,所以我一直在这里。我分享了一个sandbox
盒子链接。包含一个表。如下
| 玩具 | 颜色可选 | 可用成本 |
现在一切正常。但我想保存表的数据如下
该detail
状态应该包含表的行值的列表,并且columnsValues
应包含的复选框值Color Available
和Cost Available
例子:
this.state.detail
喜欢
detail: [
{
toy : ...
color : ...
cost : ...
}
{
toy : ...
color : ...
cost : ...
}
...
...
...
]
this.state.columnsValues
喜欢
columnsValues: {
color : boolean
cost : boolean
}
请任何专家帮助我。从过去的几个小时开始,我一直在挣扎。
谢谢你。
沙盒链接:https : //codesandbox.io/s/suspicious-microservice-qd3ku? file =/index.js