0

我不能通过在输入中输入一些东西来改变孩子;如何观察输入并使其影响孩子。并验证是否有每个孩子的名字

js:

     $(function () {
       var person = {
           name: '',
           children: ['Please enter a name']
       }

       var vm = new Vue({
           el: "#example",
           data: person,
           methods: {
               addChild: function (index) {
                   this.children.splice(index+1, 0, ""); //
               },
               removeChild: function (index) {
                   this.children.splice(index , 1)
               },
               getData: function () {
                   console.log(this.children);
               }
           }    
       })

   })

html部分:

<ul >
    <li v-for="(child,index) in children">
        the child at <span>{{ index }}</span> is <span >{{ child }}</span>
        <input v-model = "child">
        <button @click="addChild(index)">newChild</button>
        <button v-on:click="removeChild(index)">X</button>

    </li>
</ul>
    <button v-on:click="getData">watch data</button>
    <div>{{ $data | json }} </div>

</div>
4

1 回答 1

1

$index在 Vue 2.x 中弃用。相反,您可以将变量分配给索引作为v-for指令的一部分:

<li v-for="(child,index) in person.children">
    the child at <span>{{ index }}</span> is <span >{{ child }}</span>
    <input v-model = "person.children[index]">
    <button @click="addChild(index)">newChild</button>
    <button v-on:click="removeChild(index)">X</button>
</li>

更新

好的,我明白你现在在做什么。您可以将 设置为v-model要绑定到的对象的表达式。在您的情况下,它是特定索引处的子元素,因此请注意我如何将input'v-model绑定更改为person.children[index].

我还将data选项更改为具有单个person属性的对象。这使得绑定到子数组中起作用。

这是完整的工作 jsFiddle

于 2016-10-10T12:25:24.253 回答