近一段时间,由于新的项目中要使用React.js,所以找周末的时间稍微看了一下,下面是一个简单地HelloWorld的示例:
<!DOCTYPE html>
<html>
<head>
<title>HelloWorld</title>
<!-- Not present in the tutorial. Just for basic styling. -->
<link rel="stylesheet" href="css/base.css" target="_blank" rel="external nofollow" />
<script src="react.js"></script>
<script src="JSXTransformer.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
</head>
<body>
<div id="content"></div>
<script type="text/jsx">
var HelloText = React.createClass({
render: function() {
return (
<div>
<h3>Hello, {this.props.data}</h3>
</div>
);
}
});
React.render(<HelloText data="World!" />, document.getElementById('content')); </script>
</body>
</html>
其实上边示例看似简单,其实它隐藏了ReactJs的很多细节,比如像props来获取属性data的值,要想更深入的学习ReactJS,必须对props以及state有一个清晰的认识。