1 个回答

你的代码就是这样执行的当然点击拍照会画三张,如果你右边只有三个容器建议用一个下标变量实现
,定义一个index初始值为0

drawImage(){
  index = index + 1 > 3 ? 1 : index + 1;
  this['thisContext' + index].drawImage(
    this.thisVideo,
    0,
    0,
    this.canvasWidth,
    this.canvasHeight
  )
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏