gpt4 book ai didi

node.js - 如何在expressjs中调用静态html页面

转载 作者:太空宇宙 更新时间:2023-11-04 01:09:15 25 4
gpt4 key购买 nike

我是 Node 和 Express 的新手。我创建了一个微笑页面 html (test.html)(无模板)。我正在尝试使用 expressjs 调用 test.html 。我已将 test.html 放在 public 文件夹中。

如果我执行 localhost:300/test.html 我会得到该页面。如何使用 app.get() 方法调用 test.html ?

最佳答案

一种方法是使用重定向。下面是示例。

app.get('/', function(req, res){ 
res.redirect('/test.html');
});

关于node.js - 如何在expressjs中调用静态html页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19620968/

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