小编典典

在 Node.js 中加载基本 HTML

all

我试图找出如何加载和呈现一个基本的 HTML 文件,所以我不必编写如下代码:

response.write('...<p>blahblahblah</p>...');

阅读 63

收藏
2022-06-08

共1个答案

小编典典

我刚刚找到 了一种 使用fs
的方法。我不确定它是否是最干净的。

var http = require('http'),
    fs = require('fs');


fs.readFile('./index.html', function (err, html) {
    if (err) {
        throw err; 
    }       
    http.createServer(function(request, response) {  
        response.writeHeader(200, {"Content-Type": "text/html"});  
        response.write(html);  
        response.end();  
    }).listen(8000);
});

基本概念只是原始文件读取和转储内容。不过,仍然对更清洁的选择持开放态度!

2022-06-08