﻿{"id":277,"date":"2017-03-20T21:07:21","date_gmt":"2017-03-20T13:07:21","guid":{"rendered":"http:\/\/www.chenweikang.top\/?p=277"},"modified":"2017-09-19T11:37:32","modified_gmt":"2017-09-19T03:37:32","slug":"note-js-%e8%a7%a3%e6%9e%90url%e5%ae%9e%e7%8e%b0%e8%ae%bf%e9%97%ae%e8%b7%af%e7%94%b1","status":"publish","type":"post","link":"https:\/\/www.chenweikang.top\/?p=277","title":{"rendered":"Node.js-\u89e3\u6790URL\u5b9e\u73b0\u8bbf\u95ee\u8def\u7531"},"content":{"rendered":"<h2>\u4e00\u3001\u4f7f\u7528http\u6a21\u5757\u521b\u5efa\u4e00\u4e2ahttp\u670d\u52a1<\/h2>\n<h3>\u901a\u8fc7request\u5bf9\u8c61\u89e3\u6790url\u5730\u5740\uff0c\u622a\u53d6\u53c2\u6570\uff0c\u5b9e\u73b0\u4e0d\u540c\u7684\u8bf7\u6c42\u6267\u884c\u4e0d\u540c\u7684\u65b9\u6cd5<\/h3>\n<p><span style=\"color: #ff0000;\">server.js<\/span> \u5185\u5bb9\uff1a<\/p>\n<pre>var http = require(\"http\");\r\nvar url = require(\"url\");\r\nvar route = require(\".\/route\");  \/\/\u5bfc\u5165\u6211\u4eec\u81ea\u5df1\u5199\u7684route\u6a21\u5757\r\n\/\/\u521b\u5efa\u4e00\u4e2aHttp\u670d\u52a1\r\nhttp.createServer(function (request,response) {\r\n    var reqUrl = request.url; \/\/\u83b7\u53d6\u8bf7\u6c42url\r\n    if(reqUrl!=\"\/favicon.ico\"){\r\n        console.log(\"\u6536\u5230\u8bf7\u6c42 : \"+request.url);\r\n        \/\/\u89e3\u6790\u8def\u5f84 \u8fdb\u884c\u8def\u7531\r\n        var path = (url.parse(reqUrl).pathname).replace(\/\\\/\/,\"\"); \r\n       try{\r\n           route[path](request,response);\r\n       }catch (err){  \/\/\u5bf9\u5f02\u5e38\u8fdb\u884c\u6355\u83b7 \uff0c\u8bbf\u95ee\u7684\u65b9\u6cd5\u4e0d\u5b58\u5728\r\n            console.log(\"\u53c2\u6570\u9519\u8bef\uff1a\"+err);\r\n            response.write(err.toString());\r\n            response.end(\"\");\r\n       }\r\n    }\r\n}).listen(3000);\r\nconsole.log(\"server is running at http:\/\/127.0.0.1:3000\/ !\");<\/pre>\n<h2>\u4e8c\u3001\u5199\u4e00\u4e2a\u8def\u7531\u6a21\u5757\uff0c\u901a\u8fc7\u89e3\u6790\u7684\u53c2\u6570\u8c03\u7528\u4e0d\u540c\u7684\u65b9\u6cd5<\/h2>\n<p><span style=\"color: #ff0000;\">route.js<\/span><\/p>\n<pre>module.exports = {\r\n    \"login\" : function (request,response) {\r\n            console.log(\"login...\");\r\n            response.end(\"\");\r\n    },\r\n    \"regist\" : function (request,response) {\r\n            console.log(\"regist...\");\r\n            response.end(\"\");\r\n    },\r\n}<\/pre>\n<pre>var route = require(\".\/route\");\r\n\/\/\u5f15\u7528\u8be5\u6a21\u5757 \u901a\u8fc7 route['login']\uff08request,response\uff09 \u53ef\u8c03\u7528login\u65b9\u6cd5 \u82e5\u4e0d\u5b58\u5728\u5219\u4f1a\u629b\u51fa\u5f02\u5e38<\/pre>\n<p>\u542f\u52a8\u670d\u52a1\u5668\u540e \uff0c\u6d4f\u89c8\u5668\u8bbf\u95ee localhost:3000\/login \u63a7\u5236\u53f0\u8f93\u51fa login..<\/p>\n<h2>\u4e09\u3001\u603b\u7ed3<\/h2>\n<h3>1.\u901a\u8fc7\u5224\u65adfavicon.ico\u9632\u6b62nodejs\u91cd\u590d\u8bf7\u6c42<\/h3>\n<p>if(reqUrl!=\"\/favicon.ico\"){}<\/p>\n<h3>2.require(\"url\")\u5f15\u5165url\u6a21\u5757\u6765\u5e2e\u52a9\u89e3\u6790url\uff1a\u53c2\u8003API : <a href=\"http:\/\/nodejs.cn\/api\/url.html\" target=\"_blank\">http:\/\/nodejs.cn\/api\/url.html<\/a><\/h3>\n<h3>3.\u6bcf\u4e2a\u8bf7\u6c42\u7ed3\u675f\u52a1\u5fc5\u4f7f\u7528response.end()\u7ed3\u675f\uff0c\u5426\u5219\u670d\u52a1\u5668\u5c06\u4e00\u76f4\u5904\u4e8e\u8bf7\u6c42\u72b6\u6001<\/h3>\n<h3>4.\u6355\u83b7\u5f02\u5e38\u4f7f\u7a0b\u5e8f\u66f4\u52a0\u5065\u58ee<\/h3>\n<p>\u8f6c\u8f7d\u8bf7\u6ce8\u660e\uff1a<a href=\"https:\/\/www.chenweikang.top\">\u5de6\u624b\u4ee3\u7801\u53f3\u624b\u8bd7<\/a> &raquo; <a href=\"https:\/\/www.chenweikang.top\/?p=277\">Node.js-\u89e3\u6790URL\u5b9e\u73b0\u8bbf\u95ee\u8def\u7531<\/a><\/p><div class=\"__youshang\">\r\n            <div id=\"__youshang_popup\" class=\"wechat popup\" style=\"display: none;\">\r\n                <div class=\"head\">~\u8c22\u8c22\u6253\u8d4f~<\/div>\r\n                <div class=\"qrcode\"><div class=\"qrcode-li wechat\" ><img src=\"https:\/\/www.chenweikang.top\/wp-content\/uploads\/2019\/07\/wexin.png\" \/><\/div><div class=\"qrcode-li alipay\" style=\"display:none;\"><img src=\"https:\/\/www.chenweikang.top\/wp-content\/uploads\/2019\/07\/ali-pay.png\" \/><\/div><div class=\"qrcode-li hongbao\" style=\"display:none;\"><img src=\"https:\/\/www.chenweikang.top\/wp-content\/uploads\/2019\/07\/ali-hongbao.png\" \/><\/div><\/div>\r\n                <ul class=\"platform\"><li class=\"icon-wechat active\" data-bg-color=\"#05af4e\" data-thanks=\"~\u8c22\u8c22\u6253\u8d4f~\"><\/li><li class=\"icon-alipay \" data-bg-color=\"#00a2ea\" data-thanks=\"~\u8c22\u8c22\u6253\u8d4f~\"><\/li><li class=\"icon-hongbao \" data-bg-color=\"#dd5746\" data-thanks=\"<p>\u626b\u7801\u9886\u7ea2\u5305<\/p><p style='margin-top: 24px;'>\uff08\u4f59\u989d\u5b9d\u652f\u4ed8\u65f6\u53ef\u62b5\u73b0\uff09<\/p>\"><\/li><\/ul>\r\n            <\/div>\r\n            <a href=\"javascript:void(0);\" id=\"__youshang_btn\">\u8d4f<\/a>\r\n        <\/div>","protected":false},"excerpt":{"rendered":"<p>\u4e00\u3001\u4f7f\u7528http\u6a21\u5757\u521b\u5efa\u4e00\u4e2ahttp\u670d\u52a1 \u901a\u8fc7request\u5bf9\u8c61\u89e3\u6790url\u5730\u5740\uff0c\u622a\u53d6\u53c2\u6570\uff0c\u5b9e\u73b0\u4e0d\u540c\u7684\u8bf7\u6c42\u6267\u884c\u4e0d [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":269,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[43,3],"tags":[44],"class_list":["post-277","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-node-js","category-note","tag-node-js"],"_links":{"self":[{"href":"https:\/\/www.chenweikang.top\/index.php?rest_route=\/wp\/v2\/posts\/277","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.chenweikang.top\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.chenweikang.top\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.chenweikang.top\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.chenweikang.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=277"}],"version-history":[{"count":0,"href":"https:\/\/www.chenweikang.top\/index.php?rest_route=\/wp\/v2\/posts\/277\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.chenweikang.top\/index.php?rest_route=\/wp\/v2\/media\/269"}],"wp:attachment":[{"href":"https:\/\/www.chenweikang.top\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=277"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.chenweikang.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=277"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.chenweikang.top\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=277"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}