您好,登錄后才能下訂單哦!
我們一般通過node框架提供的api操作頁面渲染,如何利用原始回寫的方式來實(shí)現(xiàn)同樣的功能呢
下面是通過node 提供的異步地讀取一個(gè)文件的全部?jī)?nèi)容api readFile進(jìn)行操作,代碼如下:
html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <link rel="stylesheet" type="text/css" href="./static/style.css" rel="external nofollow" /> <title>Document</title> </head> <body> <div>這是一個(gè)div </div> <div>這是一個(gè)div </div> <div>這是一個(gè)div </div> <div>這是一個(gè)div </div> <div>這是一個(gè)div </div> <div>這是一個(gè)div </div> <div>這是一個(gè)div </div> <div>這是一個(gè)div </div> <div>這是一個(gè)div </div> <div>這是一個(gè)div </div> <div>這是一個(gè)div </div> <script type="text/javascript" src="./static/test.js"></script> </body> </html>
/static 文件夾里面放test.js 和 style.css 文件
div:nth-child(1){ font-size: 50px; color: red; } div:nth-child(3){ font-size: 80px; color: blue; } div:nth-child(6){ font-size: 100px; color: blueviolet; }
app.js
// 搭建服務(wù) var http = require('http'); var fs = require('fs'); var server = http.createServer(); server.on('listening',()=> { console.log('server starts at localhost 8080'); }) server.listen('8080','localhost'); //監(jiān)聽服務(wù) server.on('request',(req,res)=>{ if(req.url == '/') {//渲染html文件 fs.readFile('./html/node.html',(err,info)=>{ res.write(info); res.end(); }) } else if(req.url.startsWith('/static')) {//統(tǒng)一渲染html需要的static靜態(tài)文件到頁面 fs.readFile(__dirname + req.url,(err,info) =>{ res.write(info); res.end(); }) } })
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。