首页 > 其他 > 详细

获取taro的checkbox的选中状态

时间:2020-11-05 22:31:59      阅读:170      评论:0      收藏:0      [点我收藏+]
import React, { Component } from ‘react‘
import { View, Text ,Checkbox} from ‘@tarojs/components‘
export default class Index extends Component {
  constructor(props){
    super(props)
    this.state = {
      checked:false
    }
  }
  handleClick = ()=>{
    this.setState({
      checked:!this.state.checked
    })
  }
  render() {
    return (
      <View>
        <Checkbox onClick={this.handleClick} checked={this.state.checked}></Checkbox>
        {/* 要toString不然小程序上不显示 */}
        是否选中 : {this.state.checked.toString()}
      </View>
    )
  }
}

 

获取taro的checkbox的选中状态

原文:https://www.cnblogs.com/luguankun/p/13934332.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!