最近在使用vue开发考试系统时,前端遇到了这样一个问题。
[Vue warn]: Error in render: "TypeError: Cannot read properties of undefined (reading 'length')"
<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添加。
this.testPapar.questions.forEach(v=>{
if(v.type===2){
Vue.set(this.studentAnswers,v.id,[])
}
})
|