最近要写一个拍照功能,angular+ts,在用h5标签的时候(video, canvas)出现了问题
canvas为例:
如果我这么写
const canvas = document.getElementById('canvas');
const ctx = canvas.getContext('2d');
就会报错:
Property 'getContext' does not exist on type 'HTMLElement'.
如果我这么写
@ViewChild('canvas') private canvas: HTMLCanvasElement;
运行的时候报
ERROR TypeError: this.canvas.getContext is not a function
我服了,video标签也是这样
应该怎么办啊,求助各位大佬!!!!!!