亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用React-Native怎么實現一個驗證碼倒計時按鈕

發布時間:2020-12-03 15:25:41 來源:億速云 閱讀:354 作者:Leah 欄目:移動開發

利用React-Native怎么實現一個驗證碼倒計時按鈕?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

開發過程中有獲取手機驗證碼的場景,這時候有這樣的要求:

1,點擊“獲取驗證碼”的按鈕,發起獲取驗證碼的網絡請求,同時按鈕置為不可用

2,如果網絡請求成功,按鈕繼續不可用,但按鈕上文本改為倒計時((*s)后重新獲取)

3,如果網絡請求失敗,按鈕置為可用

4,倒計時結束,按鈕可用

源碼:

import React,{PropTypes} from 'react';
import {View,Text,TouchableOpacity} from 'react-native';
export default class TimerButton extends React.Component {
  constructor(props) {
   super(props)
    this.state = {
      timerCount: this.props.timerCount || 90,
      timerTitle: this.props.timerTitle || '獲取驗證碼',
      counting: false,
      selfEnable: true,
    };
    this._shouldStartCountting = this._shouldStartCountting.bind(this)
    this._countDownAction = this._countDownAction.bind(this)
  }
  static propTypes = {
   style: PropTypes.object,
   textStyle: Text.propTypes.style,
   onClick: PropTypes.func,
   disableColor: PropTypes.string,
   timerTitle: PropTypes.string,
   enable: React.PropTypes.oneOfType([React.PropTypes.bool,React.PropTypes.number])
  };

  _countDownAction(){
    const codeTime = this.state.timerCount;
    this.interval = setInterval(() =>{
      const timer = this.state.timerCount - 1
      if(timer===0){
        this.interval&&clearInterval(this.interval);
        this.setState({
          timerCount: codeTime,
          timerTitle: this.props.timerTitle || '獲取驗證碼',
          counting: false,
          selfEnable: true
        })
      }else{
        console.log("---- timer ",timer);
        this.setState({
          timerCount:timer,
          timerTitle: `重新獲取(${timer}s)`,
        })
      }
    },1000)
  }
  _shouldStartCountting(shouldStart){
    if (this.state.counting) {return}
    if (shouldStart) {
      this._countDownAction()
      this.setState({counting: true,selfEnable:false})
    }else{
      this.setState({selfEnable:true})
    }
  }
  componentWillUnmount(){
    clearInterval(this.interval)
  }
  render(){
    const {onClick,style,textStyle,enable,disableColor} = this.props
    const {counting,timerTitle,selfEnable} = this.state
    return (
      <TouchableOpacity activeOpacity={counting &#63; 1 : 0.8} onPress={()=>{
        if (!counting && enable && selfEnable) {
          this.setState({selfEnable:false})
          this.props.onClick(this._shouldStartCountting)
        };
      }}>
        <View style={[{width:100, height:44,flex:1,justifyContent:'center',alignItems:'center'},style]}>
          <Text style={[{fontSize: 16},textStyle,{color: ((!counting && enable && selfEnable) &#63; textStyle.color : disableColor || 'gray')}]}>{timerTitle}</Text>
        </View>
      </TouchableOpacity>
    )
  }
}

使用

<TimerButton enable={phoneNumber.length}
  style={{width: 110,marginRight: 10}}
  textStyle={{color: StaticColor.COLOR_MAIN}}
  timerCount={10}
  onClick={(shouldStartCountting)=>{
    this._requestSMSCode(shouldStartCountting)
  }}/>
  • onClick:觸發后按鈕selfEnable會立即被置為false
  • 通過onClick中的一系列邏輯處理之后需要調用回調函數結束倒計時
  • shouldStartCountting:回調函數,接受一個Bool類型的參數
    • shouldStartCountting(true),開始倒計時,倒計時結束時自動恢復初始狀態
    • shouldStartCountting(false), 按鈕的selfEnable會立即被置為true

看完上述內容,你們掌握利用React-Native怎么實現一個驗證碼倒計時按鈕的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南木林县| 民权县| 蒲城县| 安吉县| 贵南县| 谢通门县| 盐津县| 新蔡县| 靖安县| 汝城县| 虹口区| 靖州| 合山市| 缙云县| 特克斯县| 墨脱县| 和平区| 连城县| 屯昌县| 珲春市| 安龙县| 行唐县| 临汾市| 武乡县| 永清县| 东乡| 游戏| 阿拉尔市| 若羌县| 达尔| 长武县| 宝兴县| 铜陵市| 临邑县| 耒阳市| 武宁县| 循化| 教育| 独山县| 聊城市| 阿拉尔市|