美文网首页RN
react-native 复制粘贴

react-native 复制粘贴

作者: duansiyu | 来源:发表于2018-05-28 12:02 被阅读10次

    这是复制文本的代码 

    import {

        Clipboard

    } from 'react-native';

     state = {

                text:'邀请码1001'

       }

     //复制方法 

      copy =() => {

            Clipboard.setString(this.state.text);   

      }

      render() {

            return(

                 

                      {this.state.text}

                     

                         

                              点击复制到剪贴板

            )

        }

    ===============================================

    其他页面调用复制的文本

    import {

        Clipboard

    } from 'react-native';

    componentDidMount(){

        this.getText()

    }

    //异步获取剪贴板的内容

      getText = async () => {

        var  str = await Clipboard.getString();

        console.log(str)//邀请码1001

      }

    相关文章

      网友评论

        本文标题:react-native 复制粘贴

        本文链接:https://www.haomeiwen.com/subject/auawjftx.html