(vue中使用v-for报错)You are binding v-model directly to a v-for iteration alias.

(vue中使用v-for报错)You are binding v-model directly to a v-for iteration alias.

分析:
这个错误是由于在使用v-for循环做一些动态生成的事务时,v-model直接绑定了v-for中的迭代变量导致的,例如下图中直接使用了迭代变量teacher绑定
(vue中使用v-for报错)You are binding v-model directly to a v-for iteration alias._第1张图片解决方法:

  • 首先在data中定义一个数组,例如domains: []
  • 将需要的值通过循环依次push进去,将domain当成一个字典(也不一定必须是字典,但必须是可以indexof的)`
for (var i = 0; i < this.teachers.length; i++) {
              this.domains.push({
                value: this.teachers[i],
                key: Date.now()
              });
            }`
  • 之后使用 循环变量.value去绑定v-model就可以了
    (vue中使用v-for报错)You are binding v-model directly to a v-for iteration alias._第2张图片

你可能感兴趣的:(vue)