Why v-model doesn't work with an array and v-for loop?

前端 未结 2 959
南方客
南方客 2021-02-14 12:05

I got a custom select component, it works with a simple variable, but when used with v-for it won\'t work:

https://jsfiddle.net/7gjkbhy3/19/



        
相关标签:
2条回答
  • 2021-02-14 12:14

    I don't like the idea of having to change the view model to resolve a framework design constraint. What if the model is to be sent to your backend via an API call? It would involve an additional step of having to mutate the model.

    My solution to this was to create a Vue component that boxes the value at each array index into an object that can be referenced within it's slot. It then reacts to the data-changing by updating the array at the specified index via a watcher.

    boxed-value.vue

    <template>
        <div>
            <slot v-bind:item="boxedItem"></slot>
        </div>
    </template>
    
    <script>
        export default {
            props: {
                array: {
                    type: Array,
                    required: true
                },
                index: {
                    type: Number,
                    required: true
                }
            },
            data() {
                var data = {
                    boxedItem: {value: this.array[this.index]}
                }
    
                return data
            },
            created(){
    
            },
            watch: {
                'boxedItem.value': function(oldValue, newValue) {
                    // console.log('Array item at index ' + this.index + ' value changed from ' + oldValue + ' to ' + newValue)
                    this.array[this.index] = newValue
                }
            }
        }
    </script>
    

    Example

    <div v-for="(name, index) in primitiveValues" :key="index">
        <boxed-value :array="primitiveValues" :index="index">
            <template slot-scope="{item}">
                <el-input v-model="item.value"></el-input>
            </template>
        </boxed-value>
    </div>
    
    0 讨论(0)
  • 2021-02-14 12:24

    v-model and v-for do NOT go together well if v-model is used to an iteration alias w/ a primitive value.

    The Vue warns:

    You are binding v-model directly to a v-for iteration alias. This will not be able to modify the v-for source array because writing to the alias is like modifying a function local variable. Consider using an array of objects and use v-model on an object property instead.

    Therefore using an array of objects each of which has a property for the select value would solve the issue:

    WORKING EXAMPLE.

    <select2 v-for="item, index in samples" v-model="item.value" ></select2>
    
    new Vue({
         el: '#app',
         data: {
             sample: 0,
             samples : [{ value: 0 }, { value: 0 }, { value: 0 }]
         }
     })
    
    0 讨论(0)
提交回复
热议问题