var ctx = canvas.getContext('2d')
ctx.beginPath()
ctx.moveTo(100,100)
ctx.lineTo(700,700)
ctx.lineTo(100,700)
ctx.lineTo(100,100)
ctx.closePath()
以上在编辑时,键入ctx.时,vs code无法自动弹出以上黑体方法供我选择。
在你document获取canvas节点的方法上面 加上备注:
/** @type {HTMLCanvasElement} */