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学习案例十四的主要内容,如果未能解决你的问题,请参考以下文章

React 入门学习(十四)-- redux 基本使用

React 入门学习(十四)-- redux 基本使用

React 入门学习(十四)-- redux 基本使用

django框架学习:二十四.django表单post登录案例

机器学习实战应用案例100篇(十四)-飞蛾扑火优化算法从原理到实战应用案例

深度学习核心技术精讲100篇(六十四)-特征选择原理及应用实战案例