찾다

 >  Q&A  >  본문

node.js - 如何重定向到public下的静态html文件

利用res.res.redirect可以吗?

阿神阿神2777일 전561

모든 응답(2)나는 대답할 것이다

  • 伊谢尔伦

    伊谢尔伦2017-04-17 14:46:53

    path.join(__dirname,'public','index.html')

    회신하다
    0
  • 阿神

    阿神2017-04-17 14:46:53

    如果你用的express, 那么app.use(express.static(path.join(__dirname, 'public')));设定静态文件路径, 这样的话你就可以直接访问public目录下的静态html了, 假如你的public目录下有个test.html, 在路由跳转的逻辑中加上res.redirect('/test.html')即可, public相当于根路径。

    회신하다
    0
  • 취소회신하다