您好,登錄后才能下訂單哦!
server.js
var http = require("http"); var url = require("url"); function start(route){//route.js 的route方法 //服務(wù)實(shí)現(xiàn) function onRequest(request,response){ var pathname = url.parse(request.url.).pathname; route(pathname); // response.writeHead(200,{"Content-Type":"text/plain"}); response.write("只是一個(gè)練手罷了"); response.end(); } //創(chuàng)建服務(wù) http.createServer(onRequest).listen(8888);//端口號(hào)8888 console.log("服務(wù)啟動(dòng)");//后臺(tái)輸出,表示服務(wù)啟動(dòng)成功 } exports.start = start; //將start方法暴露出去
========================================
route.js
function route(pathname){ console.log("請求路徑是:" + pathname); //后臺(tái)查看請求路勁 區(qū)分請求的地址 } exports.route = route;
========================================
index.js
var server = require("./server"); var router = require("./route"); server.start(router.route);//傳遞給start的是router的route方法
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。