nodejs 小白求问静态文件读取的路径问题

var express = require("express");var app = express();
app.use(express.static('public'));
app.listen(3000);

public文件夹下有个index.html
http://127.0.0.1:3000/index.html
http://127.0.0.1:3000/
这样都能直接打开index.html
然而
http://127.0.0.1:3000/public/...
这样输入反而是错误的.
这样有什么区别吗?

还有看教程 明明有app.use(express.static('public'));就可以访问静态html了,教程上
还加

app.get('/index.html',function(req,res){
    res.sendFile(__dirname+"/index.html");
});

请问这么做有什么意义吗?


守着星空守着你
浏览 948回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript