我正在使用react,我有一些方法可以单独设置我的COmponent的状态。 我有以下方法:
setLineColor(value){
this.setState({stroke:value},()=>{
this.props.data(this.getStyleData());
});
}
setFillColor(value){
this.setState({ fill:value},()=>{
this.props.data(this.getStyleData());
});
}
setMode(value){
this.setState({ mode:value},()=>{
this.props.data(this.getStyleData());
});
}
我如何组合这些方法,以便我可以拥有类似的东西:
setAttribute(propery,value){...}
?
答案 0 :(得分:6)
喜欢这个
setAttribute(property, value) {
this.setState({ [property]: value }, () => {
this.props.data(this.getStyleData());
});
}