我想设置一些元素的样式属性,但语法不正确。有人能指出我哪里错了吗?
import React from 'react';
import debug from 'debug'
const log = debug('app:component:Header');
var bgColors = { "Default": "#81b71a",
"Blue": "#00B1E1",
"Cyan": "#37BC9B",
"Green": "#8CC152",
"Red": "#E9573F",
"Yellow": "#F6BB42",
};
export default class SideBar extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<a style="{{backgroundColor: {bgColors.Default}}}" >default</a>
<a style="{{backgroundColor: {bgColors.Blue}}}" >blue</a>
<a style="{{backgroundColor: {bgColors.Cyan}}}" >cyan</a>
<a style="{{backgroundColor: {bgColors.Green}}}" >green</a>
<a style="{{backgroundColor: {bgColors.Red}}}" >red</a>
<a style="{{backgroundColor: {bgColors.Yellow}}}" >yellow</a>
);
}
}
更新:对于任何人在看这个,请看到评论,这是不工作的代码。
4条答案
按热度按时间nqwrtyyt1#
https://facebook.github.io/react/tips/inline-styles.html
你不需要引用。
carvr3hs2#
你的引号位置不对。下面是一个简单的例子:
j9per5c43#
如果你想要多个样式,这是正确的完整答案。这是带有类和样式的div:
r9f1avp54#