我面临着完全相同的问题......
更新:我对该主题进行了更深入的研究,结果证明这是本地基础中的一个已知问题。复选框在本机反应中是可触摸的不透明度,按钮也是按某种顺序组合视图的,这就是为什么在这两种情况下都有问题的原因。
查看 github 中的原生基础问题:
https ://github.com/GeekyAnts/NativeBase/issues/3038
但是,我可以找到一种解决方法。这不完全是一个复选框,我使用刻度图标来显示该项目已被选中,并且我从本机基础迭代了一个可触摸的不透明度。但是通过一些样式,您可以创建一个复选框,我相信。
<scroll-view
:content-container-style="{
contentContainer: {
paddingVertical: 20
}
}"
>
<touchable-opacity
v-for="(item, index) in dataArray"
:key="index"
:onPress="
() => {
checkItem(index)
}
"
>
<text>{{ item.time }} - {{ item.name }}</text>
<image
:style="{ height: 15, width: 15, marginLeft: 15 }"
:source="require('../../../assets/icons/done.png')"
v-if="item.checked"
/>
</touchable-opacity>
</scroll-view>
在 checkItem 方法中,我使用拼接并替换项目以保持反应性:
methods: {
checkItem(index) {
this.dataArray[index].checked = true
this.dataArray.splice(index, 1, this.dataArray[index])
}
},
我的 dataArray 是一个这样的数组:
[{id: 1, name: 'Name', checked: true}, {id: 2, name: 'Name', checked: false}]
我希望它有助于解决您的问题。