首頁  >  文章  >  web前端  >  Node.js 靈活的路由

Node.js 靈活的路由

黄舟
黄舟原創
2017-01-17 15:55:521167瀏覽

Node.js route(路由) 

定義router.js檔案

[code]var http = require('http');
var url = require('url');
function start(route) {
    var onRequest = function (request, response) {
        var pathname = url.parse(request.url).pathname;
        console.log("Request for " + pathname);
        route(pathname);
        response.writeHead(200, { "Content-Type" : "text/plain"});
        response.write("Hello Zhang Shan");
        response.end();
    }
    http.createServer(onRequest).listen(8888);
    console.log('Server has started');
}
exports.start = start;

定義index.js檔案

[code]var server = require('./server');
var router = require('./router');
server.start(router.route);

Node.js 靈活的路由

Node.js 靈活的路由

中文網(www.php.cn)!


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
上一篇:Node.js 函數下一篇:Node.js 函數