wx.chooseVideo导致catchtap事件无法响应

发布于 7 年前作者 lxie6813 次浏览最后编辑 7 年前来自 ask
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

1 回复