react生成二维码

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/koufulong/article/details/79025076
import React from "react"
const QRCode = require('qrcode.react');

class Gopay extends React.Component{
    constructor(props){
        super(props)
        this.state={
            url:""
        }
    }

componentDidMount(){

       this.setState({
             url:"www.baidu.com
            })
        }

    render(){
        return(
            <div>
                  <QRCode size={150} value={this.state.url}/>
            </div>
        )
    }
}

export default Gopay

猜你喜欢

转载自blog.csdn.net/koufulong/article/details/79025076
今日推荐