如何从vue.js

时间:2018-04-25 15:54:49

标签: laravel vue.js

我有一个数组:

{ "id": 1, 
  "title": "Incidunt facere placeat nulla occaecati voluptatem voluptatem minus.", 
  "categories": [ 
     { "id": 1, 
      "name": "News", 
      "created_at": "2018-04-23 18:05:47", 
      "updated_at": "2018-04-23 18:05:47", 
      "pivot": { 
      "post_id": 1, 
      "category_id": 1 } }, { 
      "id": 2, 
      "name": "Sport", 
      "created_at": "2018-04-23 18:05:47", 
      "updated_at": "2018-04-23 18:05:47", 
      "pivot": { 
        "post_id": 1, 
        "category_id": 2 
        } 
       } 
     ]}

我可以简单地使用{{post.title}}来获得帖子标题,但是当我{{post.categories.name}}时,它会返回null,因为它不是数组。

无论如何都有类别名称?

1 个答案:

答案 0 :(得分:0)

类别是一个对象数组,所以这应该有效:

{{post.categories[0].name}}如果你想要第一个类别元素。