I am trying to build a simple blog with Angular 2 and Firebase and I am having issues using async pipe in component. I get the error in the console.
zone.js:344Unhandled Promise rejection: Template parse errors: The pipe 'async' could not be found ("
@NgModule.declarations
aren't inherited by child modules. If you need pipes, directives, components from a module, the module should be imported into your feature module.
The module with all the core pipes is CommonModule
from @angular/common
import { CommonModule } from '@angular/common';
@NgModule({
imports: [ CommonModule ]
})
class BlogModule {}
The reason it works in the app.component
is because you are most likely importing BrowserModule
into the AppModule
. BrowserModule
re-exports CommonModule
, so by importing BrowserModule
, it's like also importing CommonModule
.
It's also worth noting that CommonModule
has the core directives also, like ngFor
and ngIf
. So if you have a feature module that uses those, you will also need to import the CommonModule
into that module.