Kotiz
Kotiz

Reputation: 23

Display data from object in Strapi

When I write {{ posts }} I see this object but when I want to display it in a v-for, it doesn't show up.

This is what I have by using {{ posts }}

{
  "data": [
    {
      "id": 1,
      "attributes": {
        "title": "Post numer jeden",
        "content": "tresc w poscie numer jeden",
        "createdAt": "2022-10-27T17:51:40.396Z",
        "updatedAt": "2022-10-27T17:51:44.406Z",
        "publishedAt": "2022-10-27T17:51:44.405Z"
      }
    },
    {
      "id": 2,
      "attributes": {
        "title": "Post numer dwa",
        "content": "Tresc w poscie numer dwa",
        "createdAt": "2022-10-27T17:52:06.344Z",
        "updatedAt": "2022-10-27T17:52:07.669Z",
        "publishedAt": "2022-10-27T17:52:07.668Z"
      }
    }
  ],
  "meta": {
    "pagination": {
      "page": 1,
      "pageSize": 25,
      "pageCount": 1,
      "total": 2
    }
  }
}
<template>
  <p>{{ posts }}</p>
  <div v-for="post in posts" :key="post">
    <hr />
    <h3>{{ post.title }}</h3>
    <p>dsdsa</p>
  </div>
</template>

<script>
import axios from "axios";

export default {
  data() {
    return {
      posts: [],
    };
  },
  async created() {
    const res = await axios.get("http://localhost:1337/api/posts");
    this.posts = res.data;
  },
};
</script>

Upvotes: 0

Views: 66

Answers (1)

kissu
kissu

Reputation: 46794

This is a common issue, solved by going one level down.

Try the following

<div v-for="post in posts.data" :key="post.id">

Upvotes: 1

Related Questions