gpt4 book ai didi

node.js - express 包中的app.get方法

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

当我运行此代码时,运行没有任何问题。

httpApp.get("/friends", function(req, res) { res.redirect("/"); });

但我想对friends.html 文件执行此操作。但没有成功。

httpApp.get("/friends.html", function(req, res) { res.redirect("/"); });

最佳答案

如果您想直接提供 .html 文件,请使用 express.static,解释见 http://expressjs.com/api.html#directory

如果不这样做,就没有理由坚持 URL 是“friends.html”,只需将其保留为“friends”即可。或者,如果您确实确实需要在 URL 中包含“friends.html”而不是静态 html 文件,请在路由中使用命名变量,将其添加到 res.locals,然后根据页面名称处理请求:

app.get(...)
app.get(...)
app.post(...)
...etc...

// specific files on / last:
app.param("file", function(req,res,next,varcontent) {
res.locals.filename = varcontent;
next();
});

app.get("/:file", function(req, res, next) {
... user res.locals.filename here ...
});

关于node.js - express 包中的app.get方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20405261/

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