Quantcast
Channel: Node.jsタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8883

NextJSのapiでサーバー側からリダイレクトをさせたい時

$
0
0
  • page/api配下で処理を書いてそれをfetchした時に、処理内容に応じてクライアント側でリダイレクト処理をさせたい時res.redirect('/')と書いてもstatus: 307が帰ってくるだけでクライアント側はリダイレクトされません。
  • クライアント側のリダイレクトをさせたい時はクライアント側でrouter処理を書きましょう。
src/api/*
exportdeafult(req,res)=>{res.status(307)}
src/pages/*
importRouterfrom'next/router'()=>{if(code==307){Router.push('/')}}

node弱いのでもっといいやり方あったら教えてください。。。


Viewing all articles
Browse latest Browse all 8883

Trending Articles