node.js - nojs的response.write()如何返回一个html
ringa_lee
ringa_lee 2017-04-17 16:11:13
0
1
623

本人学生,正在钻研js。由于听人说前段开发也需要习惯在本地环境中开发web页面就选择了node作为本地环境。
已搭建一个简单node服务。

这是代码

var http = require("http");

//var path = require("path");

http.createServer(function(requrest,response){
        response.writeHead(200,{"Content-Type": "text/plain"});
        //var index = path.extname('./index.html');

        var index = '<!DOCTYPE html>'+
        '<html>'+
        '<head>'+
        '<meta charset="utf-8">'+
        '<title>你好nodejs</title>'+
        '</head>'+
        '<body>'+
        'node.js'+
        '</body>'+
        '</html>';
        response.write(index);
        response.end();
}).listen(8888);

在我从浏览器访问时直接返回了字符串如图

我还写了一个html文件但是不知道如何让node返回这个index.html给浏览器希望有朋有可以指点以下

ringa_lee
ringa_lee

ringa_lee

membalas semua(1)
Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan