Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是节点和表达的新手。我有一个创建的微笑页面 html (test.html)(没有模板)。我正在尝试使用 expressjs 调用 test.html 。我已将 test.html 放在公用文件夹中。
如果我做 localhost:300/test.html 我会得到页面。如何使用 app.get() 方法调用 test.html?
一种方法是使用重定向。下面是示例。
app.get('/', function(req, res){ res.redirect('/test.html'); });