angular – 没有ComponentLoaderFactory的提供者

前端之家收集整理的这篇文章主要介绍了angular – 没有ComponentLoaderFactory的提供者前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我更新了我的angular2项目,之前它工作正常.但是现在我收到以下错误
Error: Uncaught (in promise): Error: Error in ./RibbonComponent class 
RibbonComponent - inline template:4:5 caused by: No provider for 
ComponentLoaderFactory!
Error: Error in ./RibbonComponent class RibbonComponent - inline 
template:4:5 caused by: No provider for ComponentLoaderFactory!

ComponentLoaderFactory

export declare class ComponentLoaderFactory {
    private _componentFactoryResolver;
    private _ngZone;
    private _injector;
    private _posService;
    constructor(componentFactoryResolver: ComponentFactoryResolver,ngZone: NgZone,injector: Injector,posService: PositioningService);
    /**
     *
     * @param _elementRef
     * @param _viewContainerRef
     * @param _renderer
     * @returns {ComponentLoader}
     */
    createLoader<T>(_elementRef: ElementRef,_viewContainerRef: ViewContainerRef,_renderer: Renderer): ComponentLoader<T>;
}

我不知道还有什么要发布.所有我通过ncu比ncu -u更新了我的package.json.我想我发现了一个错误.我确实在GitHub上找到了一个帖子,但它没有帮助. GitHub

如果我需要发布任何其他内容,请告诉我.

不确定您正在使用哪些库,但在使用ng2-bootstrap时出现此错误.从这个页面参考 angular-2-with-ng2-bootstrap-and-karma-testing-final-adventure获得解决方案.

本质上,问题在于导入需要调用.forRoot()方法.也许在RibbonComponent或其他导入的库中寻找类似的东西.

原文链接:https://www.f2er.com/angularjs/140916.html

猜你在找的Angularjs相关文章