VueJS如何更新选择数据

时间:2017-03-18 03:56:59

标签: javascript vue.js vuejs2

在VueJS 2.0中,我想在选择更改时使用v-for指令更新项目的呈现。

HTML:

<main>
 {{ testvalue }}
  <select v-model="selected.name">
    <option v-for="foo in foobar">{{foo.name}}</option>
  </select>
  <span>Selected: {{ selected.name }}</span>
  <div v-for="(value, key) in selected.properties">
    <p>{{ key }} {{ value }}</p>
  </div>
</main>

app.js

new Vue({
    el: 'main',
    data: {
        foobar: [
      { name: 'rex', type: 'dog', properties: [{color: 'red', sound: 'load'}] },
      { name: 'tike', type: 'cat', properties: [{color: 'brown', sound: 'quiet'}] }, 
      { name: 'tiny', type, 'mouse', properties: [{color: 'white', sound: 'quiet'}]}
      ],
      selected: { name: 'tiny', type, 'mouse', properties: [{color: 'white', sound: 'quiet'}]},
      testvalue: 'Test'
    },
    created: function () {
        this.selected = this.foobar[0];
    },
    mounted: function () {
        this.selected = this.foobar[1];
    }
})

jsfiddle here:https://jsfiddle.net/doritonimo/u1n8x97e/

当所选对象从更改中获取数据时,v-for指令不会更新。有没有办法告诉v-for循环在Vue中数据发生变化时更新?

1 个答案:

答案 0 :(得分:2)

你的小提琴仍然包含一些错字,所以它不起作用。

请检查:https://jsfiddle.net/u1n8x97e/39/

您不需要存储整个所选对象。你可以保留索引。

<select v-model="selected">
  <option v-for="(foo, i) in foobar" :value="i">{{foo.name}}</option>
</select>

现在selected只是一个数字:

selected: 0

您可以通过foobar[selected]

访问所选对象