gpt4 book ai didi

node.js - 如何在 node.js 中的护照身份验证后发送 json 作为响应

转载 作者:搜寻专家 更新时间:2023-10-31 22:27:25 26 4
gpt4 key购买 nike

我正在尝试这个 git example .

当我将它与我的项目集成时效果很好,但我想要实现的是发送 json 作为对客户端/请求的响应,而不是 successRedirect : '/profile' & failureRedirect : '/signup'。

是否可以发送 json,或者是否有其他一些方法可以得到相同的?

任何帮助将不胜感激,TU

最佳答案

这里我修改了我的代码以发送 json 作为响应

// process the signup form
app.post('/signup', passport.authenticate('local-signup', {
successRedirect : '/successjson', // redirect to the secure profile section
failureRedirect : '/failurejson', // redirect back to the signup page if there is an error
failureFlash : true // allow flash messages
}));

app.get('/successjson', function(req, res) {
res.sendfile('public/index.htm');
});

app.get('/failurejson', function(req, res) {
res.json({ message: 'hello' });
});

关于node.js - 如何在 node.js 中的护照身份验证后发送 json 作为响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24382296/

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