native 获取手机复制内容

工作需要在登录的时候得到手机复制的内容来实行推荐奖励制度,类似于支付宝,淘宝的分享口令。
得到内容的操作很简单,但是是第一次实际使用,来记录一下!

//引入
import {
  Clipboard,
} from 'react-native'
constructor(props) {
    super(props)
    this.hash = ''
    this._getContent()
  }
  async _getContent() {
    const string = await Clipboard.getString()
    if(string.length === 8) {  //得到的内容需要一定过滤或者验证,类似于长度需要有8
      this.hash = string
    }
  }

这样我们就得到并且过滤了复制内容。

你可能感兴趣的:(native 获取手机复制内容)