亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Nodejs根據具體請求路徑執行具體操作

發布時間:2020-08-08 01:30:50 來源:網絡 閱讀:1044 作者:素顏豬 欄目:開發技術

1.處理請求模塊(requestHandlers.js)

    function start(){

    console.log("Request handler 'start' was called ");

    return "Hello start";

    }

    

    function upload(){

    console.log("Request handler 'upload' was called ");

    return "Hello Upload";

    }

    

    exports.start = start;

    exports.upload = upload;

2.路由模塊(route.js)

    function route(handle,pathname){

    console.log("About to route a request for "+pathname);

    if (typeof handle[pathname] == 'function') {

    return handle[pathname]();

    }else{

    console.log("No request handler found for " + pathname);

    return "404 Not found";

    }

    }

    

    exports.route = route;

3.服務器模塊(server.js)

    var http = require("http");

    var url = require("url");

    

    function start(route,handle){

    function onRequest(request,response){

    var pathname = url.parse(request.url).pathname;

    if (pathname != "/favicon.ico") {

    console.log("Request for" + pathname + " received");

    response.writeHead(200,{"Content-Type":"text/plain"});

    

    var content = route(handle,pathname);

    response.write(content);

    response.end();

    }

    }

    

    http.createServer(onRequest).listen(8888);

    console.log("Server has started");

    }

    

    exports.start = start;

4.調用相應模塊(index.js)

    var server = require("./server");

    var router = require("./route");

    var requestHandlers = require("./requestHandlers");

    

    var handle = {};

    handle["/"] = requestHandlers.start;

    handle["/start"] = requestHandlers.start;

    handle["/upload"] = requestHandlers.upload;

    

    server.start(router.route,handle);

5.執行index.js

    node index.js

    訪問:http://localhost:8888/start

    輸出結果:

        Hello start

    訪問:http://localhost:8888/upload

    輸出結果:

        Hello Upload

    訪問:http://localhost:8888/other

    輸出結果:

        404 Not found

Nodejs根據具體請求路徑執行具體操作

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

榆中县| 托克逊县| 威宁| 丹江口市| 平陆县| 临城县| 石屏县| 永丰县| 定州市| 色达县| 临夏市| 蛟河市| 丹阳市| 鲁山县| 镇远县| 攀枝花市| 巨鹿县| 闻喜县| 双城市| 开化县| 金溪县| 界首市| 高密市| 竹山县| 巴彦县| 富民县| 大方县| 遂昌县| 游戏| 巴塘县| 衡阳市| 沧州市| 桑日县| 江山市| 黄大仙区| 伊宁市| 剑阁县| 法库县| 嘉义市| 唐河县| 泸西县|