react 20180504

Posted gyz418

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react 20180504相关的知识,希望对你有一定的参考价值。

react 入门

技术分享图片
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="https://cdn.bootcss.com/react/15.4.2/react.min.js"></script>
    <script src="https://cdn.bootcss.com/react/15.4.2/react-dom.min.js"></script>
    <script src="https://cdn.bootcss.com/babel-standalone/6.22.1/babel.min.js"></script>
</head>
<body>
<div id="root"></div>
<script type="text/babel">
    // const element=<h1>dfdf</h1>
    const element=(
        <div>
            <p>title</p>
            <p>content</p>
        </div>
    )
    function Welcome(props){
        // return <h1>hello,{props.name}</h1>
        return (
            <div>
              <h1>hello,{props.name}</h1>
              <h1>hello,{props.name}</h1>
            </div>
        )
    }
    const Welcome2=(props)=>{
      return <h1>hello,{props.name}</h1>
    }
    class Wel extends React.Component{  // 都大写
      render(){
        // return <h1>hi,{this.props.name}</h1>
        return (
            <div>
              <h1>hi,{this.props.name}</h1>
              <h1>fine,thank you</h1>
            </div>
        )
      }
    }
    ReactDOM.render(
      // <h1>Hello, !</h1>,  // 1
      // element,   // 2
      //   <Welcome name={‘hehe‘}/>,    // 函数式组件 3
      // <Welcome2 name={‘xiaoming2‘}/>,
        <Wel name={‘how are you‘}/>,  // 类组件 4
      document.getElementById(‘root‘)
  );
</script>
</body>
</html>
View Code

 

以上是关于react 20180504的主要内容,如果未能解决你的问题,请参考以下文章

20180504早课记录03-Linux

javascript 用于在节点#nodejs #javascript内设置react app的代码片段

前端开发工具vscode如何快速生成代码片段

前端开发工具vscode如何快速生成代码片段

[React Testing] Use Generated Data in Tests with tests-data-bot to Improve Test Maintainability(代码片段

react简介