gpt4 book ai didi

javascript - 将参数链接到 JS 库

转载 作者:行者123 更新时间:2023-12-02 21:40:46 26 4
gpt4 key购买 nike

我试图像这样使用 bcrypt 。

var token = bcrypt.hash(info, 10, function (err, hash) {
if (err) return null;
return hash;
});
//pass the info param to token whenever I call token
token("test");

有人可以向我解释一下这是否可能吗?如果可以,这是一个很好的做法吗?我基本上想这样做,因为出于某种原因,req.session.destroy 并没有真正从 Firefox 中删除 session ,但它可以在 chrome 上运行。

最佳答案

您可以使用 async/await 函数调用来完成。 hash 仅接受字符串,因此最好在调用时使用 toString() 方法

const token  = async (val) => await bcrypt.hash(val.toString(),10);

对于 session

app.use('/logout', (req, res) => {
if (req.session) {
req.session.destroy(() => {
res.redirect('/')
});
} else {
res.redirect('/')
}
})

关于javascript - 将参数链接到 JS 库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60370178/

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