search
HomeWeb Front-endJS TutorialKnow JSX principles in one article (recommended)

To understand the principles of JSX, you need to first understand how to use JavaScript objects to express the structure of a DOM element.
Look at the DOM structure below:

<div class=&#39;app&#39; id=&#39;appRoot&#39;>
  <h1 id="欢迎进入React的世界">欢迎进入React的世界</h1>
  <p>
    React.js 是一个帮助你构建页面 UI 的库
  </p>
</div>

We can use JavaScript objects to represent all the information in the above HTML:

{
  tag: 'p',
  attrs: { className: 'app', id: 'appRoot'},
  children: [
    {
      tag: 'h1',
      attrs: { className: 'title' },
      children: ['欢迎进入React的世界']
    },
    {
      tag: 'p',
      attrs: null,
      children: ['React.js 是一个构建页面 UI 的库']
    }
  ]
}

But this is too long to write in JavaScript, and the structure It's not clear either, it's very convenient to use HTML.
So React.js expanded the syntax of JavaScript to allow writing syntax similar to HTML tag structures in JavaScript code, which is much more convenient. The compilation process will convert JSX structures similar to HTML into JavaScript objects. structure.

import React from 'react'
import ReactDOM from 'react-dom'

class App extends React.Component {
  render () {
    return (
      <p>
        </p><h1 id="欢迎进入React的世界">欢迎进入React的世界</h1>
        <p>
          React.js 是一个构建页面 UI 的库
        </p>
      
    )
  }
}

ReactDOM.render(
    <app></app>,
  document.getElementById('root')
)

Convert to

import React from 'react'
import ReactDOM from 'react-dom'

class App extends React.Component {
  render () {
    return (
      React.createElement(
        "p",
        {
          className: 'app',
          id: 'appRoot'
        },
        React.createElement(
          "h1",
          { className: 'title' },
          "欢迎进入React的世界"
        ),
        React.createElement(
          "p",
          null,
          "React.js 是一个构建页面 UI 的库"
        )
      )
    )
  }
}

ReactDOM.render(
    React.createElement(App),
  document.getElementById('root')
)

React.createElement will construct a JavaScript object to describe your HTML structure information, including tag names, attributes, sub-elements, etc. The syntax is

React.createElement(
  type,
  [props],
  [...children]
)

The so-called JSX is actually a JavaScript object, so when using React and JSX, you must go through the compilation process

JSX — Use react to construct components, and babel compiles them—> JavaScript objects— ReactDOM .render() —> DOM element—> Insert page

Recommended learning: "JS Basic Tutorial"

The above is the detailed content of Know JSX principles in one article (recommended). For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:segmentfault. If there is any infringement, please contact admin@php.cn delete
聊聊Vue怎么通过JSX动态渲染组件聊聊Vue怎么通过JSX动态渲染组件Dec 05, 2022 pm 06:52 PM

Vue怎么通过JSX动态渲染组件?下面本篇文章给大家介绍一下Vue高效通过JSX动态渲染组件的方法,希望对大家有所帮助!

Vue中什么是JSX?什么时候用?怎么用?Vue中什么是JSX?什么时候用?怎么用?Jan 16, 2023 pm 08:23 PM

Vue中什么是JSX?下面本篇文章给大家了解一下Vue中的JSX,介绍一下什么时候使用JSX、在Vue2中的基本使用,希望对大家有所帮助!

详解Vue3+Vite中怎么使用JSX详解Vue3+Vite中怎么使用JSXDec 09, 2022 pm 08:27 PM

Vue+Vite中怎么使用JSX?下面本篇文章给大家介绍一下Vue3+Vite 中 JSX 的使用方式,希望对大家有所帮助!

怎么在vue3中使用jsx语法怎么在vue3中使用jsx语法May 12, 2023 pm 12:46 PM

背景vue3项目中推进使用composition-api+setup形式配合jsx+hooks形式,按业务分离,逻辑更清晰,维护更方便。语法下面主要通过对比jsx和template不同语法,来实现同样的功能一丶普通内容普通内容常量,写法是一样的//jsx写法setup(){return()=>hello}//tempalte写法hello二丶动态变量jsx统一使用大括号包裹变量,没有引号,比如{age}tempalte内容使用双大括号包裹,属性变量使用冒号开头如{{age}}{}是jsx的

Vite创建Vue3项目及Vue3使用jsx的方法Vite创建Vue3项目及Vue3使用jsx的方法May 22, 2023 pm 01:58 PM

Vite创建Vue3项目Vite需要Node.js版本>=12.0.0。(node-v查看自己当前的node版本)使用yarn:yarncreate@vitejs/app使用npm:npminit@vitejs/app1.输入项目名称这里输入我们的项目名称:vite-vue32.选择框架这里选择我们需要集成的框架:vuevanilla:原生js,没有任何框架集成vue:vue3框架,只支持vue3react:react框架preact:轻量化react框架lit-element:轻量级we

Vue如何实现JSX语法和组件化编程?Vue如何实现JSX语法和组件化编程?Jun 27, 2023 am 11:48 AM

Vue是一款流行的前端框架,提供了一套基于组件的开发模式。然而,Vue原生并不支持JSX语法,但是我们可以通过使用第三方库来实现JSX语法和组件化编程。一、什么是JSXJSX是一种JavaScript的扩展语法,可以在JavaScript中编写类似于HTML的代码。React是第一个引入JSX语法的前端框架,使用JSX语法可以更加自然和方便的描

怎么在Vue3中使用jsx/tsx怎么在Vue3中使用jsx/tsxMay 11, 2023 pm 02:07 PM

JSX如何用这里以vite项目为例,要想在项目中使用JSX,我们需要安装一个插件@vitejs/plugin-vue-jsx,这个插件可以让我们在项目中使用JSX/TSXnpmi@vitejs/plugin-vue-jsx-D安装完成之后在vite.config.ts进行一个配置即可import{defineConfig}from"vite";importvuefrom"@vitejs/plugin-vue";importvueJsxfrom"@

一文详解vue3中使用JSX的方法一文详解vue3中使用JSX的方法Nov 25, 2022 pm 09:01 PM

vue中如何使用JSX?下面本篇文章给大家介绍一下vue3中使用JSX的方法,希望对大家有所帮助!

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment