{"id":2075,"date":"2021-03-06T20:41:38","date_gmt":"2021-03-06T12:41:38","guid":{"rendered":"http:\/\/123.57.164.21\/?p=2075"},"modified":"2021-03-06T20:41:38","modified_gmt":"2021-03-06T12:41:38","slug":"nodejs-%e8%bf%94%e5%9b%9e%e5%8a%a8%e6%80%81%e7%9a%84html","status":"publish","type":"post","link":"https:\/\/92it.top\/?p=2075","title":{"rendered":"Nodejs \u8fd4\u56de\u52a8\u6001\u7684Html"},"content":{"rendered":"\n<p>Nodejs express \u4e5f\u53ef\u4ee5\u8fd4\u56de\u52a8\u6001\u7684Html\uff0c\u4e0b\u9762\u662fSample\u4ee3\u7801\u3002<\/p>\n\n\n\n<ul><li>Html\u4ee3\u7801<\/li><\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;!DOCTYPE html>\n&lt;html lang=\"en\">\n\n&lt;head>\n  &lt;meta charset=\"utf-8\">\n  &lt;meta name=\"viewport\"\n    content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no\" \/>\n  &lt;meta name=\"apple-mobile-web-app-capable\" content=\"yes\" \/>\n  &lt;link rel=\"icon\" href=\"&lt;%= BASE_URL %>favicon.ico\">\n  &lt;style type=\"text\/css\">\n  &lt;\/style>\n\n  &lt;title>HelloWorld&lt;\/title>\n&lt;\/head>\n\n&lt;body bgcolor=\"#F1F1F1\">\n\n  &lt;div>\n    \n      &lt;div>\n        \/\/ URL1\u662f\u9700\u8981\u88ab\u66ff\u6362\u7684\u5185\u5bb9\n        &lt;a href=\"URL1\" target=\"_blank\">\n          HelloWorld1\n        &lt;\/a>\n      &lt;\/div>\n      &lt;div>\n       \/\/ URL2\u662f\u9700\u8981\u88ab\u66ff\u6362\u7684\u5185\u5bb9\n       &lt;a href=\"URL2\" target=\"_blank\">\n          HelloWorld2\n        &lt;\/a>\n      &lt;\/div>\n  &lt;\/div>\n\n&lt;\/body>\n\n&lt;\/html><\/pre>\n\n\n\n<ul><li><strong>router.js<\/strong><\/li><\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">const express = require('express');\nconst router = express.Router();\nconst fs = require('fs');\n\n\/*\n *@method index\u753b\u9762\u30da\u30fc\u30b8\u3092\u53d6\u5f97\u3059\u308b\n *@return index\u753b\u9762Html\n *\/\nrouter.get('\/index', function (req, res) {\n\n  let indexHtml = fs.readFileSync('.\/index.html', 'utf8');\n  indexHtml = indexHtml.replace(\"URL1\", \"http:\/\/www.163.com\");\n  indexHtml = indexHtml.replace(\"URL2\", \"http:\/\/www.baidu.com\");\n  res.end(indexHtml);\n\n});\n\nmodule.exports = router;<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Nodejs express \u4e5f\u53ef\u4ee5\u8fd4\u56de\u52a8\u6001\u7684Html\uff0c\u4e0b\u9762\u662fSample\u4ee3\u7801\u3002 Html\u4ee3\u7801 router. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[18],"tags":[],"_links":{"self":[{"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/posts\/2075"}],"collection":[{"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/92it.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2075"}],"version-history":[{"count":2,"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/posts\/2075\/revisions"}],"predecessor-version":[{"id":2078,"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/posts\/2075\/revisions\/2078"}],"wp:attachment":[{"href":"https:\/\/92it.top\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2075"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/92it.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2075"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/92it.top\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2075"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}