0
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 5 years have passed since last update.

[nuxt.js その6] middlewareによるナビゲーションガードの実装

Posted at

middlewareとは

[公式] middlewareの説明
[公式] middlewareプロパティについて

ページがレンダリングされる前に実行してくれるもののようです。今回はこれを使ってナビゲーションガードを設定します。具体的に、特定のページにミドルウェアを設定する場合は以下のように書きます。

~/page/secret.vue
<template>
  <h1>シークレットページ</h1>
</template>

<script>
export default {
  middleware: 'authenticated'
}
</script>

ミドルウェア本体は~/middlewareの下に置きます。

~/middleware/authenticated.js
export default function ({ store, redirect }) {
  // ユーザーが認証されていないときはログインページに飛ばす
  if (!store.getters['auth/email']) {
    return redirect('/user/login')
  }
}

これにより、secret.vueがレンダリングされる前にstoreに格納してある認証情報をチェックしてくれて、認証されていなければログインページにリダイレクトしてくれます。

簡単!

0
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
0
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?