小程序video封装组件时获取video节点的方法

小程序video封装组件时获取video节点的方法

#js#
1、在compont上方定义一个全局的空变量,用来承载video标签节点

let videoCtx = null
Component({
  ...

2、在attached周期里进行获取(这是重点,否则获取不到)

lifetimes: {
    attached: function() {
      videoCtx = wx.createVideoContext('myVideo', this)
    }
  },

3、可以在绑定的点击事件里直接使用了

 bindPause: function () {
     videoCtx.pause()
 },

本文参考https://blog.csdn.net/ha_cjy/article/details/79607033

你可能感兴趣的:(微信小程序)