React 組件化思想受到越來(lái)越多開(kāi)發(fā)者的關(guān)注,組件化思想幫助開(kāi)發(fā)者將頁(yè)面解耦成一個(gè)一個(gè)組件,代碼更加模塊化, 更易擴(kuò)展。而目前流行的后端模板引擎如 ejs, swig, jade, art 共同的問(wèn)題是:
創(chuàng)新互聯(lián)主營(yíng)老河口網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,成都App制作,老河口h5成都小程序開(kāi)發(fā)搭建,老河口網(wǎng)站營(yíng)銷推廣歡迎老河口等地區(qū)企業(yè)咨詢
針對(duì)以上痛點(diǎn),筆者基于 React 造出了 noox 這樣一個(gè)工具,專注于后端模板的解析,讓模板解析更加簡(jiǎn)單,易用。
使用方法
安裝
npm install noox
簡(jiǎn)單的 demo
模板代碼
首先創(chuàng)建組件目錄和增加模板文件
mkdir components && cd components vi Head.jsx
Head.jsx 內(nèi)容如下:
<head> <title>{title}</title> <meta name="description" content={props.description} /> <link rel="stylesheet" href="./css/style.css" rel="external nofollow" rel="external nofollow" /> </head>
Node.js Code
const noox = require('noox'); const nx = new noox(path.resolve(__dirname, './components'), {title: 'noox'}); let output = nx.render('Head', {description: 'hello, noox.'})
輸出
<head> <title>noox</title> <meta name="description" content="hello, noox." /> <link rel="stylesheet" href="./css/style.css" rel="external nofollow" rel="external nofollow" /> </head>
原理
Noox 在 React 的 Jsx 的基礎(chǔ)上,簡(jiǎn)化了組件引用和創(chuàng)建,假設(shè)創(chuàng)建一個(gè)目錄結(jié)構(gòu)如下:
components/ Header.jsx Body.jsx Layout.jsx
運(yùn)行如下 nodejs 的代碼:
nx = new noox(path.resolve(__dirname, './components'))
將會(huì)創(chuàng)建三個(gè)組件:
然后通過(guò) nx.render 渲染
nx.render('Body', props)
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。
本文標(biāo)題:基于react后端渲染模板引擎noox發(fā)布使用
瀏覽地址:http://jinyejixie.com/article42/jjpgec.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站排名、外貿(mào)網(wǎng)站建設(shè)、網(wǎng)站策劃、品牌網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)公司、建站公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)