var express = require("express");var app = express();
app.use(express.static('public'));
app.listen(3000);public文件夾下有個index.htmlhttp://127.0.0.1:3000/index.htmlhttp://127.0.0.1:3000/這樣都能直接打開index.html然而http://127.0.0.1:3000/public/...這樣輸入反而是錯誤的.這樣有什么區(qū)別嗎?還有看教程 明明有app.use(express.static('public'));就可以訪問靜態(tài)html了,教程上還加app.get('/index.html',function(req,res){
res.sendFile(__dirname+"/index.html");
});請問這么做有什么意義嗎?
nodejs 小白求問靜態(tài)文件讀取的路徑問題
守著星空守著你
2018-08-28 10:10:17