最近在使用vue开发考试系统时,前端遇到了这样一个问题。

[Vue warn]: Error in render: "TypeError: Cannot read properties of undefined (reading 'length')"

image-20220321155529905

<!-- 把值绑定到存放id和答案对应的关系对象的一个属性-->
<el-radio-group v-model="studentAnswers[question.id]" >
  <!--循环遍历所有选项 -->
                      <el-radio-button
                          v-for="(item,index) in question.options"
                          v-if="question.type===0"
                          :label="index"
                          style="margin-bottom: 10px;width: 100% ;">{{
                          String.fromCharCode('A'.charCodeAt(0) + index)
                        }}、{{ item }}
                      </el-radio-button>
</el-radio-group>

原因

因为系统初始化,studentAnswers这个对象中所有属性对应的值都不可能是一个array类型,checkbox需要绑定一个数组类型的数据。

解决

那就要在渲染之前给这个属性初始化成一个数组形式,如果是在created钩子函数中直接使用,也是没有用的,需要使用vue的api添加。

image-20220321160501984

//遍历所有的问题
this.testPapar.questions.forEach(v=>{
  //如果是多选题,就初始化属性为空数组
        if(v.type===2){
          Vue.set(this.studentAnswers,v.id,[])
        }
      })
Logo

前往低代码交流专区

更多推荐