react state中如果key需要的是变量
程序员文章站
2024-03-12 19:27:44
...
1. 如果我们不用中括号,这里的key-"type"就会被当成字符串处理
onTabChange = (key, type) => {
console.log(key, type);
this.setState({ [type]: key });
};
上一篇: sass的导入@import