8***@qq.com
8***@qq.com
  • 发布:2024-07-28 16:11
  • 更新:2024-07-28 16:11
  • 阅读:235

使用switch无法进行数据的双向绑定

分类:uni-app

当你form表单使用switch进行操作时,
<switch @change="binddata('itExistDimension', $event.detail.value)" :checked="formData.itExistDimension"></switch>
可以这样使用,但是无法更新formData的itExistDimension的值,必须重构binddata方法进行手动绑定才行
binddata(name,value){
this.formData[name]=value
this.$refs.form.setValue(name,value)
},
否则如果你使用v-if=“itExistDimension”必然无效

0 关注 分享

要回复文章请先登录注册