欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

微信小程序checkbox组件使用详解

程序员文章站 2022-07-04 23:45:02
本文为大家分享了微信小程序checkbox组件的使用方法,供大家参考,具体内容如下 效果图 wxml

本文为大家分享了微信小程序checkbox组件的使用方法,供大家参考,具体内容如下

效果图

微信小程序checkbox组件使用详解

wxml

<view class="tui-content">
 <checkbox-group bindchange="checkboxchange">
 <label class="checkbox" wx:for="{{items}}">
  <view class="tui-menu-list"><checkbox value="{{item.name}}" checked="{{item.checked}}"/>{{item.value}}</view>
 </label>
 </checkbox-group>
 <view class="tui-show-name">
 <text wx:for="{{checkarr}}"> {{item}} </text>
 </view>
</view>

js

page({
 data: {
 items: [
  { name: 'usa', value: '美国' },
  { name: 'chn', value: '中国', checked: 'true' },
  { name: 'bra', value: '巴西' },
  { name: 'jpn', value: '日本' },
  { name: 'eng', value: '英国' },
  { name: 'tur', value: '法国' },
 ],
 checkarr: ['中国']
 },
 checkboxchange: function (e) {
 var arr = [];
 e.detail.value.foreach(current => {
  for (var value of this.data.items){
  if(current === value.name){
   arr.push(value.value);
   break;
  } 
  }
 });
 this.setdata({checkarr: arr});
 }
})

总结

  • 由于e.detail.value和this.data.items都是数组元素进行属性对比查找,所以此处采用了双循环。
  • foreach循环不能在循环中跳出,所以在循环this.data.items时采用for…of…

demo下载

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。