gpt4 book ai didi

javascript - 在内联样式中使用状态变量

转载 作者:行者123 更新时间:2023-11-28 15:38:21 24 4
gpt4 key购买 nike

我想在内联样式中使用一个状态变量:

const styles = {
progressText1: {
fontSize: this.state.text1Size
}
};

constructor(props, context) {
super(props, context);
this.state = {
text1Size: "300%"
};
};

...这样我就可以在调整窗口大小时重置它。我收到错误“未定义没有属性”。有谁知道哪里出了问题?

谢谢!

最佳答案

const 样式 移动到您的渲染函数中,就在您的返回

之前

它可能看起来像这样:

render() {
const styles = {
progressText1: {
fontSize: this.state.text1Size
}
};
return (
<div style={styles.progressText1}></div>
)
}

关于javascript - 在内联样式中使用状态变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43883413/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com