gpt4 book ai didi

node.js - node express res.redirect 没有哈希

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

页面 url 是 http://example.com/dashboard#/catalog。当 cookie 过期时,我做一个

res.redirect('/login')

在浏览器中生成的 url 是 http://example.com/login#/catalog

如果没有哈希部分,我怎么能重定向,即将 url 设为 http://example.com/login

感谢您的帮助!

最佳答案

我不知道你是怎么做注销部分的,但假设你使用的是链接标签,你可以做这样的事情

$("a#logout").on('click', function() {
// the following was taken from http://stackoverflow.com/questions/4508574/remove-hash-from-url
var loc = window.location.href,
index = loc.indexOf('#');
if (index > 0) {
window.location = loc.substring(0, index);
}
});

关于node.js - node express res.redirect 没有哈希,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22084063/

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