text GraphQl Vue.js循环遍历边和节点

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text GraphQl Vue.js循环遍历边和节点相关的知识,希望对你有一定的参考价值。

<div class="box" v-for="{ node } in posts.edges">
  <article class="media">
      <div class="media-left">
          <figure class="image is-64x64">
              <img :src="node.featuredImage.guid">
          </figure>
      </div>
      <div class="media-content">
          <div class="content">
              <p>
                  <strong>{{ node.title }}</strong>
                  <small>ID {{ node.postId }}</small>
                  <small>Status {{ node.status }}</small>
                  <br> Thumbnail id {{ node.featuredImage.guid }}
              </p>
          </div>
      </div>
  </article>
</div>

以上是关于text GraphQl Vue.js循环遍历边和节点的主要内容,如果未能解决你的问题,请参考以下文章

Vue.js:通过循环遍历数组值来绑定文本字段的值

text Vue.js循环播放

如何在vue js中循环遍历数组中的图像数组

如何理解 GraphQL 中的空边和节点

Vue.js v-for 循环遍历数组不起作用(非零长度的零元素)

循环遍历Vue.js中的动态数组,然后根据对应的值将每个对象组件添加到单独组件中的div中?