收藏
回答

隐藏 小游戏 获取用户信息按钮

框架类型 问题类型 API/组件名称 终端类型 操作系统 微信版本 基础库版本
小游戏 Bug UserInfoButton.hide 客户端 iOS 6.6.6 Wechat Lib 2.0.3


UserInfoButton

隐藏 api 不生效

var infoButton = wx.createUserInfoButton({
        type: 'text',
        text: '获取用户信息',
        style: {
            left: 10,
            top: 76,
            width: 200,
            height: 40,
            lineHeight: 40,
            backgroundColor: '#ff0000',
            color: '#ffffff',
            textAlign: 'center',
            fontSize: 16,
            borderRadius: 4
        }
    });
    infoButton.onTap((res) => {
        console.log(res);
        // button.hide();
        // button.destroy();
        
    });
    setTimeout(()=>{
 
        infoButton.hide();        
        // infoButton.destroy();
        
    },10000);



回答关注问题邀请回答
收藏
登录 后发表内容