重定向到其他页面(前端) - 错误代码:STATUS_ACCESS_VIOLATION

发布于 2025-01-11 10:52:47 字数 533 浏览 0 评论 0原文

我在重定向到其他页面时遇到问题,并导致此错误: 错误 - STATUS_ACCESS_VIOLATION

当我尝试在前端脚本中重定向到其他页面时遇到此问题:

window.localStorage.setItem('img1', JSON.stringify({img_data}))
window.location.replace("/visitor/login");

在本地存储中设置数据然后重定向到其他页面是否存在问题?

我的服务器中有一条“/visitor/login”的路由:

app.get("/visitor/login", (req, res) => {
    res.render("./Visitor Module/login");
})

I have problem with redirecting to other page, and resulting to this error:
Error - STATUS_ACCESS_VIOLATION

I'm encountering this when I'm trying to redirect to other page in front-end script:

window.localStorage.setItem('img1', JSON.stringify({img_data}))
window.location.replace("/visitor/login");

Is there problem in setting data in localstorage then redirecting to other page?

I have a route in my server for "/visitor/login":

app.get("/visitor/login", (req, res) => {
    res.render("./Visitor Module/login");
})

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文