91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

React.JS中JSX的原理與使用方法

發布時間:2021-07-20 12:01:07 來源:億速云 閱讀:235 作者:chen 欄目:web開發

這篇文章主要介紹“React.JS中JSX的原理與使用方法”,在日常操作中,相信很多人在React.JS中JSX的原理與使用方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”React.JS中JSX的原理與使用方法”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

在開始開發之前,我們需要創建一個空項目文件夾。

安裝

初始化

npm init -y

2.安裝webpack相關依賴

npm install webpack webpack-cli -D

3.安裝babel-loader相關依賴

npm install babel-loader @babel/core @babel/preset-env -D

4.安裝jsx支持依賴

npm install @babel/plugin-transform-react-jsx -D

配置

1.在根目錄下創建main.js文件 此文件為入口文件。

2.在項目根目錄下創建webpack.config.js

module.exports={   entry:{     main:'./main.js'   },   module:{     rules:[       {         test:/\.js$/,         use:{           loader:'babel-loader',           options:{             presets:['@babel/preset-env'],             plugins:[['@babel/plugin-transform-react-jsx',{pragma:'createElement'}]] // 自定義設置pragma參數,我也可以設置為我的名字:maomin           }         }       }     ]   },   mode:'development',   optimization:{     minimize: false

3.創建一個reactJsx.js文件 此文件為主要邏輯文件。

開發

reactJsx.js

// 封裝創建Dom節點 class ElementWrapper {   constructor(type) {     this.root = document.createElement(type);   }   setAttibute(name, value) {     this.root.setAttibute(name, value);   }   appendChild(component) {     this.root.appendChild(component.root);   } }  // 封裝插入文本節點 class TextWrapper {   constructor(content) {     this.root = document.createTextNode(content);   } } // 組件 export class Component {   constructor() {     this.props = Object.create(null); // 創建一個原型為null的空對象     this.children = [];     this._root = null;   }   setAttribute(name, value) {     this.props[name] = value;   }   appendChild(component) {     this.children.push(component);   }   get root() { // 取值     if (!this._root) {       this._root = this.render().root;     }     return this._root;   } } // 創建節點,createElement對照 webapck.config.js 中pragma參數。 export function createElement(type, attributes, ...children) {   let e;   if (typeof type === "string") {     e = new ElementWrapper(type);   } else {     e = new type();   }   for (let p in attributes) { // 循環屬性     e.setAttribute(p, attributes[p]);   }   let insertChildren = (children) => {     for (let child of children) {       if (typeof child === "string") {         child = new TextWrapper(child);       }       if (typeof child === "object" && child instanceof Array) {         insertChildren(child); // 遞歸       } else {         e.appendChild(child);       }     }   };   insertChildren(children);   return e; }  // 添加到Dom中 export function render(component, parentElement) {   parentElement.appendChild(component.root); }

main.js

import {createElement,Component,render} from './reactJsx.js'class MyComponent  extends Component { render(){ return

maomin

import {createElement,Component,render} from './reactJsx.js'  class MyComponent extends Component {   render(){     return <div>       <h2>maomin</h2>       {this.children}     </div>   } }  render(<MyComponent id="name" class="age">   <div>xqm</div>   <div>my girlfriend</div> </MyComponent>,document.body)

執行

npx webpack

在dist文件夾下創建html文件,然后引入main.js,打開html文件就可以看到效果了。

React.JS中JSX的原理與使用方法

到此,關于“React.JS中JSX的原理與使用方法”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

玛曲县| 栾川县| 定日县| 武定县| 永济市| 沁源县| 古浪县| 西昌市| 万载县| 顺平县| 达日县| 肥西县| 贵德县| 高唐县| 汉阴县| 庆云县| 丹寨县| 土默特左旗| 德保县| 左权县| 浙江省| 延津县| 都匀市| 宁夏| 尉犁县| 襄垣县| 池州市| 信阳市| 罗甸县| 荣昌县| 南川市| 临沧市| 普格县| 射阳县| 丽水市| 勃利县| 达拉特旗| 容城县| 甘孜县| 漳州市| 定州市|