错误TS2339:类型'typeof RootRenderer'上不存在属性'renderComponent'。

时间:2017-04-21 09:27:54

标签: angular

尝试渲染此代码时出现此错误:

RootRenderer.renderComponent({
    id: 'test',
    templateUrl: 'app/test.component.html'
})

错误TS2339:类型'typeof RootRenderer'上不存在属性'renderComponent'。

1 个答案:

答案 0 :(得分:0)

你是来自班级的访问实例属性。如果您想访问renderComponent,则需要创建RootRenderer的实例(使用依赖注入)。

btw,RootRenderer已从Angular 4弃用,而是使用RendererFactory2https://angular.io/docs/ts/latest/api/core/index/RendererFactory2-class.html