Vue Js获取数组的v-for长度

Posted

技术标签:

【中文标题】Vue Js获取数组的v-for长度【英文标题】:Vuesjs Getting v-for length of an Array 【发布时间】:2020-10-25 07:54:50 【问题描述】:

我想在 VueJs 上渲染 totalCount

这是我的 Grapql Api

query
  allStudents
    totalCount
    edges
      node
        id
        lastName
        email
      
    
  

这里是示例 html 代码

  <div>
                <p class="card-text text-right">Total Students</p>
                <div class="fluid-container">
                  <h3 class="card-title font-weight-bold text-right mb-0" v-for="(value, totalCount) in Objects"> totalCount: value </h3>
                </div>
              </div>
            </div>

【问题讨论】:

【参考方案1】:

这解决了 directory.totalCount

【讨论】:

【参考方案2】:

在 vue 中可以通过 this.directory.totalCount 访问该属性,在 html 中可以通过 this.directory.totalCount 访问。

<div>
    <p class="card-text text-right">Total Students</p>
    <div class="fluid-container">
        <h3 class="card-title font-weight-bold text-right mb-0"
           v-for="(value, totalCount) in Objects"> 
             directory.totalCount: value
        </h3>
    </div>
</div>

【讨论】:

以上是关于Vue Js获取数组的v-for长度的主要内容,如果未能解决你的问题,请参考以下文章

vue中v-for 怎么获取长度

Vue.js 2 v-for 循环没有获取数组元素

如何在 Vue.js 中过滤数组和循环 V-for

来自对象键和嵌套数组的 Vue.js v-for 循环

在 Vue JS 中使用 v-for 为组件发送 props

如何在 Vue.js 中使用 v-for 遍历对象数组?