2 回答

TA貢獻(xiàn)1802條經(jīng)驗(yàn) 獲得超10個(gè)贊
1、用戶界面能做的最基礎(chǔ)的事情就是呈現(xiàn)一些數(shù)據(jù),React讓顯示數(shù)據(jù)變得簡(jiǎn)單,當(dāng)數(shù)據(jù)變化時(shí),用戶界面會(huì)自動(dòng)同步更新。
2、通過(guò)例子進(jìn)行了解:
<!DOCTYPE html>
<html>
<head>
<script src="build/react.js"></script>
<script src="build/JSXTransformer.js"></script>
</head>
<body>
<divid="example"></div>
<script type="text/jsx">
var HelloWorld = React.createClass({
render: function() {
return (
<p>
Hello, <input type="text"placeholder="Your name here" />!
It is {this.props.date.toTimeString()}
</p>
);
}
});
setInterval(function() {
React.render(
<HelloWorld date={new Date()} />,
document.getElementById('example')
);
},500);
</script>
</body>
</html>
- 2 回答
- 0 關(guān)注
- 1339 瀏覽
添加回答
舉報(bào)