ValidateSessionComponent

ValidateSessionComponent

本文介绍了如果我在 HTML 中包含一个组件并通过 DI 注入它,为什么会出现 StaticInjector 错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个使用 LoginFormComponent 的组件 ValidateSessionComponent.我在 ValidateSessionComponent 中使用 LoginFormComponent,将它包含在 ValidateSessionComponent 的 HTML 中.

I have a component ValidateSessionComponent which uses LoginFormComponent. I use LoginFormComponent in ValidateSessionComponent by including it in the HTML of the ValidateSessionComponent.

到目前为止,这工作正常.然后我决定在 ValidateSessionComponent

This works fine so far. Then I decided to also include reference of LoginFormComponent via DI in ValidateSessionComponent

constructor(private loginForm2:LoginFormComponent,private helper:HelperService,private dialogService:DialogBoxService,private activatedRoute:ActivatedRoute, private router:Router, private userManagementService:UserManagementService) { }

这开始导致错误 StaticInjectorError(DynamicTestModule)[ValidateSessionComponent ->登录表单组件]:StaticInjectorError(平台:核心)[ValidateSessionComponent ->登录表单组件]:NullInjectorError:LoginFormComponent 没有提供程序!

为什么我开始收到错误消息?

Why do i start getting the error?

推荐答案

因为 DI 仅适用于提供者.

Because DI works only for providers.

组件不是提供者.

如果您希望获得对子元素的引用,请改用 ViewChild.

If you wish to get a reference to your child element, use a ViewChild instead.

@ViewChild(LoginFormComponent, { static: true }) loginForm: LoginFormComponent;

这篇关于如果我在 HTML 中包含一个组件并通过 DI 注入它,为什么会出现 StaticInjector 错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 19:34