wx.chooseVideo导致catchtap事件无法响应
发布于 5 年前 作者 lxie 6645 次浏览 来自 问答
uploadTap: function () {
     
    var that = this
    wx.chooseVideo({
      sourceType: ['album', 'camera'],
      maxDuration: 61,
      camera: 'back',
      success(res) {
        console.log(res)
      }
    })
  },

当绑定catchtap后,若maxDuration大于60s,在真机上则该事件无法触发,手机ip8 plus ios12.1.3

回到顶部