前提・実現したいこと
Nuxt.jsのstoreでinjectを使用したメソッドを使用したところエラーが起こりました。
もともとstore/index.js
では発生しなかったエラーですが、store/book.js
に処理を分けたところエラーが発生してしまいました。
公式で確認してもstoreでプラグインは使用できると書いてあるので原因がわかりませんでした。
発生している問題・エラーメッセージ
Cannot read properties of undefined (reading 'volumeInfo')
該当のソースコード
plugins/bookInfo.js
js
1import noImage from '~/assets/images/noImage.png' 2 3export default ({ app }, inject) => { 4 inject('title', value => value.volumeInfo.title ? value.volumeInfo.title : 'No title') 5 inject('author', value => value.volumeInfo.authors ? value.volumeInfo.authors[0] : 'No authors') 6 inject('image', value => value.volumeInfo.imageLinks ? value.volumeInfo.imageLinks.thumbnail : noImage) 7} 8
store/book.js
js
1import * as url from './constants/url' 2 3export const state = () => ({ 4 // 選択した本 5 books: [], 6 7 // 選択した本クリアフラグ 8 selectedBook: null, 9 10 // サーバーから返される情報 11 responseBook: [], 12 13 // 登録した本 14 registeredBook: [] 15}) 16 17export const mutations = { 18 // 本情報 19 getBooks (state, res) { 20 state.books = res.data.items 21 }, 22 23 // 選択した本 24 selectedBook (state, book) { 25 state.selectedBook = book 26 }, 27 // 選択解除 28 clearBook (state) { 29 state.selectedBook = null 30 }, 31 32 // レスポンスされた本 33 responseBook (state, response) { 34 state.responseBook = response 35 }, 36 // responseBook削除 37 removeResponseBook (state) { 38 state.responseBook = [] 39 }, 40 41 // 登録した本 42 registeredBook (state, response) { 43 state.registeredBook = response 44 } 45} 46 47// 本の登録 48export const actions = { 49 post (state, commit) { 50 const selectedBook = state.selectedBook 51 52 // plugin/bookInfo $title,$author,$image 53 this.$axios.$post(url.POST_API + 'posts', { 54 post: { 55 title: this.$title(selectedBook), 56 author: this.$author(selectedBook), 57 image: this.$image(selectedBook) 58 } 59 }) 60 .then((response) => { 61 commit('responseBook', response) 62 commit('clearBook') 63 }) 64 } 65} 66
/config.js
js
1 // Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins 2 plugins: [ 3 'plugins/axios', 4 'plugins/bookInfo' 5 ], 6 7
試したこと
Nuxtの公式ページの参照
あなたの回答
tips
プレビュー