2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Express.jsでNext()に引数を渡したい

Last updated at Posted at 2023-03-01

こういうことがしたい

ミドルウエアにトークンを渡して検証を行い、
検証して出てきたuidを次のメインの処理に渡したい ←ここでnext()にuidを渡したい

app.get('/', verifytoken, (req, res) => {
  // uidをもとにdbからデータを取得する
})

function verifyToken(req, res, next){
  // tokenの検証をする
  // tokenをデコードしてuidを取得する
  next(uid) // nextに引数を持たせて次の処理にuidを渡したい
}

どうすれば渡せるか

res.localsに単一のリクエスト-レスポンスサイクル中だけ変数を保持することができる
他のリクエストから呼ぶことはできない

app.get('/', verifyToken, (req, res) => {
  const uid = res.locals.uid // uidを渡すことができる
  // uidを利用した処理...
})

function verifyToken(req, res){
  // tokenの検証をする
  // uidの取得をする
  res.locals.uid = uid // 単一のリクエスト-レスポンスサイクルのみで保持される
}

参考文献

Express公式サイト

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?