Angular 4 找不到名字 'ViewChild'
Angular 4 cannot find name 'ViewChild'
我有这个奇怪的错误,但没有发现任何类似的东西..
我在我的网站上使用 ng2-canvas-whiteboard 组件绘制 canvas,一切正常,除非我尝试使用 canvas 获取对 canvas 的引用:
@ViewChild('canvasWhiteboard') canvasWhiteboard: CanvasWhiteboardComponent;
正如官方文档所建议的,我收到了这个错误:
Failed to compile.
e:/frontend/src/app/components/user/dashboard/dashboard.component.ts (15,2): Cannot find name 'ViewChild'.
有什么建议吗?谢谢
您在使用前忘记导入 ViewChild
import { ViewChild } from '@angular/core'
我有这个奇怪的错误,但没有发现任何类似的东西.. 我在我的网站上使用 ng2-canvas-whiteboard 组件绘制 canvas,一切正常,除非我尝试使用 canvas 获取对 canvas 的引用:
@ViewChild('canvasWhiteboard') canvasWhiteboard: CanvasWhiteboardComponent;
正如官方文档所建议的,我收到了这个错误:
Failed to compile.
e:/frontend/src/app/components/user/dashboard/dashboard.component.ts (15,2): Cannot find name 'ViewChild'.
有什么建议吗?谢谢
您在使用前忘记导入 ViewChild
import { ViewChild } from '@angular/core'