gpt4 book ai didi

javascript - 禁止自动路由到index.html

转载 作者:行者123 更新时间:2023-12-01 02:35:44 25 4
gpt4 key购买 nike

我已经使用 Node 和 Express 设置了服务器。除 GET/外,所有路由均有效。它总是显示index.html(也在公共(public)文件夹中),而不是显示我发送的文件。如果我将 index.html 重命名为其他名称或将其删除,我的 GET/路由就会正常工作。

const publicPath = path.join(__dirname, '../public');

app.use(express.static(publicPath));

app.get('/', (req, res) => {
res.sendFile(publicPath + '/login-register.html');
});

有没有办法抑制index.html的自动渲染?

编辑:注意到我在控制台和 Chrome 开发工具中都没有收到任何错误,这可能会很有用。

最佳答案

发生这种情况是因为 static 中间件与 / 路由匹配,因为目录中有一个 index.html 文件并将该文件发送到浏览器。第二个中间件函数永远不会运行,因为 / 路由已经匹配。如果您切换中间件函数声明的顺序,它应该按照您期望的方式工作。

app.get('/', (req, res) => {
res.sendFile(publicPath + '/login-register.html');
});

app.use(express.static(publicPath));

关于javascript - 禁止自动路由到index.html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47942537/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com