2018年2月17日 星期六

【Node.js】使用fs module的readFile方法引入html檔案,寫入結果後,並於server中開啟


//0217.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">
    <title>Document</title>
</head>
<body>
    <h1>我是標題</h1>
    <p>我是內容</p>
</body>
</html>

//0217-3.js
var http = require('http');
var fs = require('fs');

http.createServer(function(req,res){
    fs.readFile('0217.html',function(err,data){
        res.writeHead(200,{'Content-Type':'text/html'});
        res.write(data);
        res.end();
    })
}).listen(8080)

沒有留言:

張貼留言