gpt4 book ai didi

http - 将客户端路由到 node.js 中的外部站点?

转载 作者:可可西里 更新时间:2023-11-01 16:50:44 26 4
gpt4 key购买 nike

这可能非常简单,或者根本不可能 - 但在我看来这是值得一问的。

原因是因为我正在尝试演示一个快速而肮脏(哈哈)的 url-shortening 应用程序。

app.get('/link/:key', function(req, res){
client.get(req.params.key, function(err, reply){
if(client.get(reply)){
// route to reply here
}
else{
res.render('index', {
link: null
});
}
});
});

如果可能,我将如何执行该路线?

最佳答案

http://expressjs.com/guide.html :

res.redirect('/', 301);
res.redirect('/account');
res.redirect('http://google.com');
res.redirect('home');
res.redirect('back');

关于http - 将客户端路由到 node.js 中的外部站点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6757061/

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