【发布时间】:2015-10-12 17:38:55
【问题描述】:
当我使用以小写字母开头的变量时,页面什么也没有显示。如果我将变量名称更改为以大写 (HelloWorld) 开头,则页面将显示内容。
<script type="text/jsx">
var helloWorld = React.createClass({
render : function () {
return (
<div>
<h1>Hello World</h1>
</div>
);
}
});
React.render(<helloWorld/> , document.body);
</script>
谁能告诉我为什么会这样?
【问题讨论】:
标签: javascript reactjs react-jsx