关于radio-group取消选择项问题

场景:使用radio组件,删除选中项。使用官网https://uniapp.dcloud.io/component/radio中例子,会出现以下情况。

左边的图为选中后,右边图为删除选中项后。大家可以看到 执行完删除操作后被选中项还是停留在第三项的位置。想取消这种类似于记忆的功能,即执行完操作后所有选中项清空,如下图所示:

f

在删除函数里,把checked的值设置为空就可以了。

 <view class="uni-list">
            <radio-group @change="radioChange">
                <label class="uni-list-cell uni-list-cell-pd" v-for="(item, index) in items" :key="index">
                    <view>
                        <radio :value="index" :checked="index === current" />
                    </view>
                    <view>{{item.name}}</view>
                </label>
            </radio-group>
        </view>
        <button type="primary" @click="del">删除</button>

 

del:function(){
                if(this.items.length>0 && this.current != '' || this.current==0)
                {
                    this.items.splice(this.current,1);
                    this.current='';  //这里将current值设置为空,就取消了所有选中项
                }

这里有一点需要注意的:在列表选中某一项时,必须将current值和items数组对应的下标设置一致,否则即便将current的值清空,也不会生效的。

 radioChange: function(evt) {            
                this.current=evt.target.value;   //这里相当于index的值             
            }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值