angular 12 更新:模块“@angular/common”'没有导出成员 'XhrFactory'
angular 12 update: Module '"@angular/common"' has no exported member 'XhrFactory'
当 运行 angular 应用程序时,我收到以下错误:
Error: node_modules/@angular/platform-browser/platform-browser.d.ts:31:10 - error TS2305: Module '"@angular/common"' has no exported member 'XhrFactory'.
31 import { XhrFactory } from '@angular/common';
我在网上搜索了这个错误,但没有找到解决这个错误的方法
尝试更改 import { XhrFactory } from '@angular/common';
至
import { XhrFactory } from '@angular/common/fesm5/http';
对我来说,问题是 @angular/common
和 @angular/platform-browser
的不同版本。
我将 @angular/common
升级到最新版本后问题已解决。
当 运行 angular 应用程序时,我收到以下错误:
Error: node_modules/@angular/platform-browser/platform-browser.d.ts:31:10 - error TS2305: Module '"@angular/common"' has no exported member 'XhrFactory'.
31 import { XhrFactory } from '@angular/common';
我在网上搜索了这个错误,但没有找到解决这个错误的方法
尝试更改 import { XhrFactory } from '@angular/common';
至
import { XhrFactory } from '@angular/common/fesm5/http';
对我来说,问题是 @angular/common
和 @angular/platform-browser
的不同版本。
我将 @angular/common
升级到最新版本后问题已解决。