reactjs - 如何设置backgroundcolor的内联样式?

时间:2015-06-25 07:04:45

标签: javascript reactjs

我想设置某些元素的样式属性,但我没有正确的语法。任何人都可以建议我错在哪里吗?

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>
           );
  }

}

更新:对于任何看到这个的人,请参阅评论,这不是正常工作的代码。

3 个答案:

答案 0 :(得分:46)

https://facebook.github.io/react/tips/inline-styles.html

您不需要引号。

<a style={{backgroundColor: bgColors.Yellow}}>yellow</a>

答案 1 :(得分:11)

您的报价位于错误的位置。这是一个简单的例子:

Chain PREROUTING (policy ACCEPT)
target     prot opt source               destination

CT         tcp  --  anywhere             anywhere             NOTRACK

答案 2 :(得分:9)

如果您想要多种款式,这是正确的完整答案。 这是类和风格的div:

<div className="class-example" style={{width: '300px', height: '150px'}}></div>