gpt4 book ai didi

javascript - Node JS : How to open one route within another

转载 作者:行者123 更新时间:2023-11-30 20:55:03 25 4
gpt4 key购买 nike

我是网络前端领域的新手。我有路线:/product/shop。对于每条路线,我都创建了 Controller 。问题是如何从 /product 页面打开 /shop 路由页面。当我调用 res.render('product'); 时,它路由 http://localhost:3000/shop/products 而不是 http://localhost: 3000/产品

我该如何解决这个问题?

最佳答案

您被重定向到 http://localhost:3000/shop/products 因为执行请求之前的当前路径是:http://localhost:3000/shop要直接进入/products,您可以执行以下操作

  • 您可以使用 .. 调用文件系统中的父级(使用相对路径)
res.render('../products')
  • 或者简单地使用绝对路径
res.render('/products')

关于javascript - Node JS : How to open one route within another,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47753786/

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