I am getting the following error "Can't bind to 'ngSwitchWhen' since it isn't a known property of 'template'." I've read different topics where it was advised to add
import { CommonModule } from '@angular/common'
and add "CommonModule" into the imports section of @NgModel, which I did, however this did not solve the problem. I can't figure out what I'm doing wrong, any help in how to fix this?
This is my code for "app.component.ts"
import { Component } from '@angular/core'
@Component({
selector: 'app-root',
template: `
<ul class="nav nav-pills">
<li [class.active]="viewMode == 'map'"><a (click)="viewMode = 'map'">Map View</a></li>
<li [class.active]="viewMode == 'list'"><a (click)="viewMode = 'list'">List View</a></li>
</ul>
<div [ngSwitch]="viewMode">
<template [ngSwitchWhen]="'map'" ngSwitchDefault>Map View Content></template>
<template [ngSwitchWhen]="'list'">List View Content</template>
</div>
`
})
export class AppComponent {
viewMode = 'map';
}
And this is the code for "app.module.ts"
import { BrowserModule } from '@angular/platform-browser';
import { NgModule, ApplicationRef } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { CommonModule } from '@angular/common';
import { AppComponent } from './app.component';
import { FavoriteComponent } from './favorite.component';
import { HeartComponent } from './heart.component';
import { VoteComponent } from './vote.component';
import { TweetComponent } from './tweet.component';
@NgModule({
declarations: [
AppComponent,
FavoriteComponent,
HeartComponent,
VoteComponent,
TweetComponent
],
imports: [
BrowserModule,
FormsModule,
HttpModule,
CommonModule
],
providers: [],
entryComponents: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule {
}
It should be ngSwitchCase
instead of ngSwitchWhen
https://angular.io/docs/ts/latest/api/common/index/NgSwitchCase-directive.html
来源:https://stackoverflow.com/questions/42719113/angular2-cant-bind-to-ngswitchwhen-since-it-isnt-a-known-property-of-tem