最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to exclude last item in v-for? - Stack Overflow

programmeradmin4浏览0评论

I'm new to JavaScript and JS frameworks. I have the following snippet of Vuejs code:

    <div v-for="coefficient in coefficients" class="coefficient">
        <div>
            <span class="name">name:{{coefficient.name}}</span>
            <span class="value">value:{{coefficient.value}}</span>
            <span>---</span>
        </div>
    </div>

Here is the output:

name: Ubuntu
value: 1
---
name: MacOS
value: 2
---
name: Windows
value: 3
---

How can I exclude the last item of coefficients by Vuejs?

I'm new to JavaScript and JS frameworks. I have the following snippet of Vuejs code:

    <div v-for="coefficient in coefficients" class="coefficient">
        <div>
            <span class="name">name:{{coefficient.name}}</span>
            <span class="value">value:{{coefficient.value}}</span>
            <span>---</span>
        </div>
    </div>

Here is the output:

name: Ubuntu
value: 1
---
name: MacOS
value: 2
---
name: Windows
value: 3
---

How can I exclude the last item of coefficients by Vuejs?

Share Improve this question asked Dec 25, 2017 at 14:38 Max GabderakhmanovMax Gabderakhmanov 9221 gold badge18 silver badges36 bronze badges 1
  • You're supposed to create the smaller array in your controller code, then iterate over that in your html template. v-for doesn't support slicing, afaik. – user5734311 Commented Dec 25, 2017 at 14:40
Add a ment  | 

2 Answers 2

Reset to default 7

just use v-for="coefficient in coefficients.slice(0,-1)"

demo

You could use a puted property, or you could use coefficients.slice(0, -1) like so:

new Vue({
  data : {
    coefficients : [
    {name : "a", value : 2}, 
    {name : "b", value : 3}, 
    {name : "c", value : 4}]
  },
  el : "#app"  
})
<div id="app">
    <div v-for="coefficient in coefficients.slice(0, -1)" class="coefficient">
        <div>
            <span class="name">name:{{coefficient.name}}</span>
            <span class="value">value:{{coefficient.value}}</span>
            <span>---</span>
        </div>
    </div>
</div>

<script src="https://cdnjs.cloudflare./ajax/libs/vue/2.5.13/vue.js"></script>

发布评论

评论列表(0)

  1. 暂无评论