react动态修改多级对象数值解决办法集合
话不多说,直接上代码。如果又不懂得,请留言。
class xx extends React.Component {
constructor(props) {
super(props)
this.state = {
curChoose:"a",
a: {
b01: {
c01:1111
},
b02: {
c01:2222
}
},
}
}
componentDidMount(){
//方法一:
this.demo01();
//方法二:
this.demo02();
}
demo01=()=>{
//curChoose根据实际项目需求动态变化
let curCho
共有 0 条评论