uniapp radio无法像element 直接获取到数组中选项checked提交的model,那我们就在用户点击按钮事件来传我们radio-group的id:

@change="radioChange($event,item.id)"

image.png

image.png

控制台:
image.png

evt中的evt.detail.value就是选中的值,id是我们radio-group的id,合起来就是:
image.png

        radioChange: function(evt,id) {
            console.log(evt)
            console.log(id)
            this.temp[id]=evt.detail.value
        }

这样就拿到了我们想要的数组和效果:

image


hhffffggg
5 声望0 粉丝