javascript代码......
<div>
<canvas #layout width="800" height="600">this is not working</canvas>
code here...
</div>
<script>
function myFunction() {
document.getElementById("layout")
}
角度很小 app.component.html ...
<canvas #layout width="800" height="600">this is not working</canvas>
... app.component.ts
@ViewChild('layout') canvas;
ngOnInit() {
const _canvas = this.canvas.nativeElement;
....
}