使用反应组件的变量内部渲染功能

时间:2017-12-30 09:16:19

标签: javascript reactjs

我正在学习React并遇到疑问,有两个代码,其中组件中的render方法使用的变量在不同的地方声明,我怀疑是为什么一个有效,另一个没有。

import React from 'react';
import ReactDOM from 'reactDOM';

const myVar = 'hello';

class myComponent extends React.Component {
    render () {
       return <h1>{myVar}</h1>;
    }
}

ReactDOM(
    <myComponent />,
    document.getElementById('app')
);

这有效,意味着我能够在render方法中访问全局变量。

但是这个案例不起作用

import React from 'react';
import ReactDOM from 'reactDOM';

class myComponent extends React.Component {
    const myVar = 'hello';

    render () {
       return <h1>{this.myVar}</h1>;
    }
}

ReactDOM(
    <myComponent />,
    document.getElementById('app')
);

我在这里很困惑,有人可以解释这种行为吗

1 个答案:

答案 0 :(得分:10)

在课堂内你不要定义变量。您只需撰写myVar='hello'而不是const myVar='hello'

  

在类定义中指定的属性被赋予与它们出现在对象文字中相同的属性。