2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Vue.js 】配列のデータを展開してループ(v-forディレクティブ)

Last updated at Posted at 2020-03-13

v-for

for文やwhile文のような繰り返しの処理をVueでも使うことができる(配列を用意して、そこから1つずつ取り出してその内容を表示する)  
Vue.jsではこの繰り返し文を「v-for」ディレクティブを使用してhtmlファイル上で実現することができる。

基本構文
v-for="各要素の一時的な変数名 in 繰り返したい配列やオブジェクト"

データ配列を展開してみる

sample.html
<div id="app">
  <dl v-for="grade in grades" :key="grade.subject" >
    <dt>{{ grade.subject }}</dt>
    <dd>{{ grade.score }}</dd>
  </dl>
</div>
grades.js
new Vue({
   el: '#app',
   data: {
       grades: [
             { subject:'国語', score: '80点' },
             { subject:'数学', score: '68点' },
             { subject:'理科', score: '75点' },
             { subject:'社会', score: '88点' }
       ]
   }
});

""grade in grades"でdataのgradesプロパティを変数"grade"に置き換える。
{{ grade }}でデータを表示。

sample.html
<div id="app">
  <dl v-for="(grade, index) in grades" :key="grade.subject" >
    <dd>{{ index }}</dd>
    <dd>{{ grade.subject }}</dd>
    <dd>{{ grade.score }}</dd>
  </dl>
</div>

要素の配列にはインデックス番号が割り振られているのでインデックスを取得することもできる。
(grade, index)
コンマで区切り、2番目の引数にインデックス用の変数を入れて括弧で囲むだけ。
{{ index }}で表示することができる。
※インデックス番号は0から始まることに注意。

keyプロパティの設定

上記のサンプルコードでは:key=""でkeyの設定がされている。ここではデータの値を入れているがインデックスを指定してもOK。
v-forディレクティブではユニークなkeyプロパティをつけなければならない。keyはVue.jsがデータを追跡する際のヒントになり、パフォーマンスにも影響する。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?