NullInjectorError: No provider for HighContrastModeDetector

孤街浪徒 提交于 2020-07-17 12:05:06

问题


I am using Angular 8 for my project, using Node Version 10.15.3( had tried with other versions including latest 12.31.1). This works fine on MAC but while running on the Windows it stops on the browser with the error

NullInjectorError: "StaticInjectorError(AppModule)[MatCommonModule -> HighContrastModeDetector]: 
  StaticInjectorError(Platform: core)[MatCommonModule -> HighContrastModeDetector]: 
    NullInjectorError: No provider for HighContrastModeDetector!"

Is this related to my hardware (how does it is related)?


回答1:


The issue is not related Node version. Its due to incompatible Angular Material and Angular versions. For angular 8, you need angular material version 8.2.3. Run below command from your project root directory.

npm i --save @angular/cdk@8.2.3 @angular/material@8.2.3

For steps to find out compatible angular and angular material version see ans to this SO post.




回答2:


In my case, @angular/cdk version was causing the error.

Setting it from github:angular/cdk-builds to ^8.1.4 on package.json and then running a npm install solved the problem




回答3:


In my case , incompatible versions of @angular/cli and @angular/material was causing the error.

to solve it :

try to upgrade node package modules to compatible versions in package.json and then run npm install --save command.



来源:https://stackoverflow.com/questions/59031570/nullinjectorerror-no-provider-for-highcontrastmodedetector

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!