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

分析:
这个错误是由于在使用v-for循环做一些动态生成的事务时,v-model直接绑定了v-for中的迭代变量导致的,例如下图中<el-input v-model="teacher" auto-complete="off"></el-input>直接使用了迭代变量teacher绑定
错误写法解决方法:

  • 首先在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就可以了
    在这里插入图片描述
Logo

前往低代码交流专区

更多推荐