收藏
回答

关于 iPhone8 和 Mate 10 的审核问题

框架类型 问题类型 提审时间 AppID
小游戏 需求 2018-12-21 gh_b1609e1bde5b



微信 6.7.2 审核提示这两个机型有问题,论坛上找了一圈,群里也问了一圈,有很多人遇到这个问题,目前定位到出个这个是官方的两个 api: 登录 wx.createUserInfoButton 或 createGameClubButton 之一引起的,看到论坛有人说 api 有变更,但是我检查我这边的代码没有定位到错误,请教下各位。另外能问官网或者审核人员要具体的报错吗?

// createUserInfoButton

const self = this

        if(typeof wx != 'undefined') {
            const w = wx.getSystemInfoSync().screenWidth
            const h = wx.getSystemInfoSync().screenHeight
            const button = wx.createUserInfoButton({
                type: 'text',
                text: '微信登录',
                style: {
                    left: w / 2 - 100,
                    top: h / 2 * 1.4,
                    width: 200,
                    height: 40,
                    lineHeight: 40,
                    backgroundColor: "#1aad19",
                    color: "#ffffff",
                    textAlign: "center",
                    fontSize: 16,
                    borderRadius: 4
                }
            })
            button.onTap((res) => {
                if(res.errMsg === 'getUserInfo:ok') {
                    console.log(res)
                    cc.sys.localStorage.setItem('userInfo', res.userInfo)
                    // cc.director.loadScene('menu')
                    self.loadMenu()
                    button.destroy()
                }
            })
            console.log(button)

        }





// createGameClubButton


const w = wx.getSystemInfoSync().screenWidth

const h = wx.getSystemInfoSync().screenHeight
G.clubBtn = wx.createGameClubButton({
  type: 'text',
  text: '',
  style: {
    left: w - 90,
    top: h - 40,
    width: 90,
    height: 40
  }
})


回答关注问题邀请回答
收藏

2 个回答

  • 剑心
    剑心
    2023-08-01
    public class User {
      name: "da"
    }
    
    2023-08-01
    有用
    回复
  • 小游戏运营专员-jake
    小游戏运营专员-jake
    2018-12-24

    麻烦提供下游戏名和appid看看

    2018-12-24
    有用
    回复
登录 后发表内容