- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的代码:
import { CommonModule } from '@angular/common';
import { HttpClientModule } from '@angular/common/http';
import { NgModule } from '@angular/core';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { LanguageTranslationModule } from './shared/modules/language-translation/language-translation.module'
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { AuthGuard } from './shared';
import { SidebarComponent } from './layout/components/sidebar/sidebar.component';
import { HeaderComponent } from './layout/components/header/header.component';
@NgModule({
imports: [
CommonModule,
BrowserAnimationsModule,
HttpClientModule,
LanguageTranslationModule,
AppRoutingModule
],
declarations: [AppComponent,HeaderComponent,SidebarComponent],
providers: [AuthGuard],
bootstrap: [AppComponent],
exports: [
HeaderComponent,
SidebarComponent
],
})
export class AppModule {}
Error: BrowserModule has already been loaded. If you need access to common directives such as NgIf and NgFor from a lazy loaded module, import CommonModule instead. Error: BrowserModule has already been loaded. If you need access to common directives such as NgIf and NgFor from a lazy loaded module, import
CommonModule
而不是
BrowerModule
.任何人都可以帮助我吗?
最佳答案
进口 BrowserAnimationsModule
和 HttpModule
仅一次(在您的根模块或核心模块中)。
仅将这些提到的模块导入一次(仅在 app-module 中):BrowserModule
, BrowserAnimationsModule
, LazyLoadImageModule
(如果使用),CarouselModule
(如果使用),InfiniteScrollModule
(如果使用),HttpModule
(如果使用它)
关于angular - BrowserModule 已经加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56110455/
这是我的代码: import { CommonModule } from '@angular/common'; import { HttpClientModule } from '@angu
我已将我的应用程序更新为 RC6,但现在我不断收到此错误: zone.js:484 Unhandled Promise rejection: BrowserModule has already bee
我在根 AppModule 中导入了 DashboardModule。在 DashboardModule 的组件模板中,我使用了 *ngFor。它在 BrowserModule 中声明(恰好在 Bro
我正在尝试实现延迟加载但出现如下错误** ERROR Error: Uncaught (in promise): Error: BrowserModule has alreadybeen loaded
这两个模块的用途是什么? import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDyna
我对 Angular 的世界还很陌生。 CommonModule 与 BrowserModule 之间有什么区别,为什么应该优先选择另一个? 最佳答案 您必须了解的是,使用 Angular,您可以创建
我正在浏览 Angular2 教程 https://angular.io/docs/ts/latest/tutorial/toh-pt5.html .一切都好一步路由。 Visual Studio C
我只是想在 Angular2 中运行一个简单的 index.html 页面,但它在控制台中向我显示 zone.js 中的错误: Unhandled Promise rejection: No
我有一个模块 AppModule 和另一个模块 FooModule。我在 FooModule 中有一些组件,并且像任何普通应用程序一样在 AppModule 中加载 FooModule 的路由。 以下
我在运行 angular 2 应用程序时遇到问题。通话期间 import { PlatformRef } from '@angular/core/src/application_ref'; impor
我们有一个遗留应用程序,其中包括 POJavascript、原型(prototype)和 jquery。 我们正在以 Angular 一次一个部分地重写应用程序。目前我们已经用angular4重写了一
这个问题在这里已经有了答案: Lazy Loading BrowserModule has already been loaded (13 个答案) 关闭 2 年前。 我正在使用具有延迟加载概念的多
第一个问题 目标 我正在尝试使用 ng add @nguniversal/express-engine --clientProject [name] 将 SSR 添加到我的 Angular 项目中(这
我是一名优秀的程序员,十分优秀!