我想在 div 标签中使用 this.props 数据。我在数据中有我想要动态设置的颜色。是否可以在 div 标签中使用 this.props ?
var cont = {
height: "90px",
width: "20%",
background: "LightBlue",
display: "inline-block",
padding: "5px",
margin: "5px"
};
var Comment = React.createClass({
render: function () {
return (
<div style={cont}>
<span>
{this.props.author}
{this.props.col}
</span>
</div>
);
}
});