gpt4 book ai didi

css - 如何将变量传递给 React 中的内联 css 函数

转载 作者:行者123 更新时间:2023-11-28 00:19:36 25 4
gpt4 key购买 nike

我已经设法在 React 中创建了类,并想将随机生成的背景设置为 div 容器。名为 divStyle 的常量变量确实包含 CSS 函数 rbg() 但我找不到将变量从 this.state 传递到该函数的解决方案

import React from 'react';
import './ShopItem.css';

class ShopItem extends React.Component{
constructor(props){
super(props);
this.state = {
r:Math.floor(Math.random() * 256),
g:Math.floor(Math.random() * 256),
b:Math.floor(Math.random() * 256)
}
}

componentDidMount() {
console.log(this.state.r, this.state.g, this.state.b);
}

render(){

const divStyle = {
background: "rgb()"
};

return(
<div className="Item" style={divStyle} >
{console.log("test")}
{this.props.data}
</div>
);
};
};

export default ShopItem;

最佳答案

您可以使用 es6 反引号并添加使用以下代码,this 引用当前实例,因此 this.state 在方法中可用。

const divStyle = {
background: `rgb(${this.state.r},${this.state.g},${this.state.b})`
};

关于css - 如何将变量传递给 React 中的内联 css 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54942545/

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