我的 angular md table 的警报没有出现在我的 plunker 中

alerts not showing up in my plunker for my angular md table

https://plnkr.co/edit/XLYLsuMd3I9ICuBgMeDH?p=preview

@NgModule({

  imports: [
    BrowserModule,
    BrowserAnimationsModule,
    FormsModule,
    HttpModule,
    PlunkerMaterialModule,
    MdNativeDateModule,
    ReactiveFormsModule,
    InMemoryWebApiModule.forRoot(InMemoryDataService),
  ],

  declarations: [SelectFormExample],
  bootstrap: [SelectFormExample],
  providers: [AppState]
})
export class PlunkerAppModule {}

platformBrowserDynamic().bootstrapModule(PlunkerAppModule);
alert("I am here");

systemjs.config.js

中为 angular-in-memory-web-api 指定一个版本
'angular-in-memory-web-api': 'https://unpkg.com/angular-in-memory-web-api@0.2.4/bundles/in-memory-web-api.umd.js'

没有版本就用最新的。我会找到一个更新的 plunker,因为 plunker 默认为最新的 angular (v5.1.3) 并且它是为 ^4.0.0

设计的