详细解法:https://blog.csdn.net/cry1049208942/article/details/106946668?utm_medium=distribute.pc_relevant_right.none-task-blog-BlogCommendFromMachineLearnPai2-2.channel_param_right&depth_1-utm_source=distribute.pc_relevant_right.none-task-blog-BlogCommendFromMachineLearnPai2-2.channel_param_right

问题:( 男:0 女:1)

后端传回数据0,选中框应该显示男而不是0
在这里插入图片描述

出现问题的写法:
< a-select v-model=“test.sex” placeholder=“请选择性别” notFoundContent=“数据为空” style=“width:100%”>
< a-select-option value=“0”>男< /a-select-option>
< a-select-option value=“1”>女< /a-select-option>
< /a-select>
应该在value前加
正确写法:
< a-select v-model=“test.sex” placeholder=“请选择性别” notFoundContent=“数据为空” style=“width:100%”>
< a-select-option :value=“0”>男< /a-select-option>
< a-select-option :value=“1”>女< /a-select-option>
< /a-select>
结果:
在这里插入图片描述

Logo

前往低代码交流专区

更多推荐