欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

前端学习-React基础

程序员文章站 2022-05-07 19:57:21
...

安装React

npm install -g create-react-app

创建一个React项目

create-react-app demo
.....
npm start

前端学习-React基础

Hello React

删除src下的文件,重写,hello world才是第一步!
新建一个index.js,引入react的包.

import React from 'react'
import ReactDom from 'react-dom'

再建个Hello.js,这个里面写我们的hello world,React理念组件化,我是这样理解的.

import React, {Component} from 'react'

class Hello extends Component {
    render() {
        return(
            <div>
                Hello World!
            </div>
        )
    }
}

export default Hello

这里的{Componet}是ES6的解构写法.

将这个Hello.js文件在index.js中引入进去.

import React from 'react'
import ReactDom from 'react-dom'
import Hello from  './Hello'

ReactDom.render(<Hello />, document.getElementById('root'))

这里的root节点在public文件夹下的index.html里面.

<body>
    <noscript>You need to enable JavaScript to run this app.</noscript>
    <div id="root"></div>
    <!--
      This HTML file is a template.
      If you open it directly in the browser, you will see an empty page.

      You can add webfonts, meta tags, or analytics to this file.
      The build step will place the bundled scripts into the <body> tag.

      To begin the development, run `npm start` or `yarn start`.
      To create a production bundle, use `npm run build` or `yarn build`.
    -->
  </body>

然后我们npm start运行下:
前端学习-React基础

努力,gogogo

相关标签: 前端 react