14

我有这个奇怪的错误,但没有找到任何类似的东西。我在我的网站上使用 ng2-canvas-whiteboard 组件作为绘图画布,一切正常,除非我尝试使用以下方法获取对该画布的引用:

@ViewChild('canvasWhiteboard') canvasWhiteboard: CanvasWhiteboardComponent;

正如官方文档所建议的那样,我收到了这个错误:

Failed to compile.

e:/frontend/src/app/components/user/dashboard/dashboard.component.ts (15,2): Cannot find name 'ViewChild'.

有什么建议么 ?谢谢

4

1 回答 1

57

ViewChild使用前忘记导入

import { ViewChild } from '@angular/core'
于 2017-10-18T18:22:23.567 回答