本篇文章主要介紹了詳解nodejs透過回應回寫的方式渲染頁面資源,現在分享給大家,也給大家做個參考。
我們一般透過node框架提供的api操作頁面渲染,如何利用原始回寫的方式來實現同樣的功能呢
下面是透過node 提供的非同步地讀取一個檔案的全部內容api readFile進行操作,程式碼如下:
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> <p>这是一个p </p> <p>这是一个p </p> <p>这是一个p </p> <p>这是一个p </p> <p>这是一个p </p> <p>这是一个p </p> <p>这是一个p </p> <p>这是一个p </p> <p>这是一个p </p> <p>这是一个p </p> <p>这是一个p </p> <script type="text/javascript" src="./static/test.js"></script> </body> </html>
/static 資料夾在裡面放置test.js 和style.css 檔案
p:nth-child(1){ font-size: 50px; color: red; } p:nth-child(3){ font-size: 80px; color: blue; } p:nth-child(6){ font-size: 100px; color: blueviolet; }
app.js
// 搭建服务 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'); //监听服务 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')) {//统一渲染html需要的static静态文件到页面 fs.readFile(__dirname + req.url,(err,info) =>{ res.write(info); res.end(); }) } })
上面是我整理給大家的,希望未來會對大家有幫助。
相關文章:
以上是詳解nodejs透過回應回寫的方式渲染頁面資源的詳細內容。更多資訊請關注PHP中文網其他相關文章!