Coder Social home page Coder Social logo

Comments (5)

potato4d avatar potato4d commented on May 27, 2024

@retasretas
ありがとうございます!調べてみます 👀

from nuxt-beginners-guide.

matobaa avatar matobaa commented on May 27, 2024

これでエラー解消できました。

diff --git a/app/store/posts.js b/app/store/posts.js
index 6086f4d..714af09 100644
--- a/app/store/posts.js
+++ b/app/store/posts.js
@@ -28,7 +28,7 @@ export const actions = {
     async fetchPosts({ commit }) {
         const posts = await this.$axios.$get('/posts.json')
         commit('clearPosts')
-        Object.entries(posts)
+        Object.entries(posts || [])
             .reverse()
             .forEach(([id, content]) => 
                 commit('addPost', {

from nuxt-beginners-guide.

potato4d avatar potato4d commented on May 27, 2024

@retasretas @matobaa
ありがとうございます。確認できたのでこちら反映、正誤表にも追記しておきました!

from nuxt-beginners-guide.

matobaa avatar matobaa commented on May 27, 2024

P121のこちらも

diff --git a/app/pages/users/_id.vue b/app/pages/users/_id.vue
index 10e26b9..ec07fdb 100644
--- a/app/pages/users/_id.vue
+++ b/app/pages/users/_id.vue
@@ -56,7 +56,7 @@ export default {
     },
     computed: {
         userPosts() {
-            return Object.entries(this.user.posts).map(([id, post]) => {
+            return Object.entries(this.user.posts || []).map(([id, post]) => {
                 const created_at = moment(post.created_at).format('YYYY-MM-DD HH:mm:ss')
                 return { id, created_at, ...post }
             })

from nuxt-beginners-guide.

matobaa avatar matobaa commented on May 27, 2024

P121のこちらも

これは誤報でした。すみません。修正しなくても大丈夫でした。

from nuxt-beginners-guide.

Related Issues (16)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.