首页 > 其他 > 详细

react按钮防抖

时间:2021-08-09 13:52:57      阅读:17      评论:0      收藏:0      [点我收藏+]
jumpLive  = (channel)=>{
        const {liveloading} = this.state;//点击开关
        var that = this;
        if(!liveloading){
            this.setState({liveloading:1});
            jumpToLive.jumpToLive(channel).then(
                function(value) {
                that.setState({liveloading:0});
            });
        }
 
    }
jumpToLive(channel) {
        let url = baseUrl + "/playUrl?channelId=" + channel;
        console.log(‘api.baseUrl‘, baseUrl);
        return new Promise((resovle,reject)=>{
            Request({url: url, data: {}}).then(response => {
                if (response.code == 4000) {
                    alert(‘系统错误‘);
                } else {
                    let data = response.data;
                    data.nickname = encodeURIComponent(Base64.encode(data.nickname));
                    let hrefUrl = response.data.url;
                    let getParam = live.jsonToGetUrl(data);
                    window.open(hrefUrl + "?" + getParam);
                }
                resovle();
    
            }).catch((err=>reject(err)))
        })

 

react按钮防抖

原文:https://www.cnblogs.com/yangqing22/p/15117960.html

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