React学习案例十四
Posted hhh江月
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React学习案例十四相关的知识,希望对你有一定的参考价值。
React学习案例十四
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello React!</title>
</head>
<body>
<div id="example"></div>
<script type="text/babel">
function FormattedDate(props)
return <h2>现在是 props.date.toLocaleTimeString().</h2>;
class Clock extends React.Component
constructor(props)
super(props);
this.state = date: new Date();
componentDidMount()
this.timerID = setInterval(
() => this.tick(),
1000
);
componentWillUnmount()
clearInterval(this.timerID);
tick()
this.setState(
date: new Date()
);
render()
return (
<div>
<h1>Hello, world!</h1>
<FormattedDate date=this.state.date />
</div>
);
ReactDOM.render(
<Clock />,
document.getElementById('example')
);
</script>
</body>
</html>
<!-- <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello React!</title>
</head>
<body>
<div id="example"></div>
<script type="text/babel">
function FormattedDate(props)
return <h2>现在是 props.date.toLocaleTimeString().</h2>;
class Clock extends React.Component
constructor(props)
super(props);
this.state = date: new Date();
componentDidMount()
this.timerID = setInterval(
() => this.tick(),
1000
);
componentWillUnmount()
clearInterval(this.timerID);
tick()
this.setState(
date: new Date()
);
render()
return (
<div>
<h1>Hello, world!</h1>
<FormattedDate date=this.state.date />
</div>
);
ReactDOM.render(
<Clock />,
document.getElementById('example')
);
</script>
</body>
</html> -->
<!-- <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello React!</title>
</head>
<body>
<div id="example"></div>
<script type="text/babel">
function FormattedDate(props)
return <h2>现在是 props.date.toLocaleTimeString().</h2>;
class Clock extends React.Component
constructor(props)
super(props);
this.state = date: new Date();
componentDidMount()
this.timerID = setInterval(
() => this.tick(),
1000
);
componentWillUnmount()
clearInterval(this.timerID);
tick()
this.setState(
date: new Date()
);
render()
return (
<div>
<h1>Hello, world!</h1>
<FormattedDate date=this.state.date />
</div>
);
ReactDOM.render(
<Clock />,
document.getElementById('example')
);
</script>
</body>
</html> -->
<!-- <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello React!</title>
</head>
<body>
<div id="example"></div>
<script type="text/babel">
function FormattedDate(props)
return <h2>现在是 props.date.toLocaleTimeString().</h2>;
class Clock extends React.Component
constructor(props)
super(props);
this.state = date: new Date();
componentDidMount()
this.timerID = setInterval(
() => this.tick(),
1000
);
componentWillUnmount()
clearInterval(this.timerID);
tick()
this.setState(
date: new Date()
);
render()
return (
<div>
<h1>Hello, world!</h1>
<FormattedDate date=this.state.date />
</div>
);
ReactDOM.render(
<Clock />,
document.getElementById('example')
);
</script>
</body>
</html> -->
以上是关于React学习案例十四的主要内容,如果未能解决你的问题,请参考以下文章
django框架学习:二十四.django表单post登录案例