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

前端之家收集整理的这篇文章主要介绍了javascript – reactjs – 如何设置backgroundcolor的内联样式?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想设置一些元素的样式属性,但是我没有语法正确.有谁可以建议我错了什么?
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>
           );
  }

}

更新:对于任何人看这个请看评论这是不工作的代码.

解决方法

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

你不需要报价.

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

猜你在找的JavaScript相关文章