角2锅炉板?

时间:2017-07-31 18:10:46

标签: angular

我试图在这里创建一个简单的Angular 2锅炉板

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

任何人都可以理解为什么它不起作用

//our root app component
import {Component, NgModule, VERSION} from '@angular/core'

@Component({
  selector: 'my-app',
  template: `
    <div>
      <h2>Hello {{name}}</h2>
    </div>
  `,
})
export class AppComponent {
  name:string;

  constructor() {
    this.name = `Angular`
  }

}

1 个答案:

答案 0 :(得分:1)

由于您在environment中导入了src/main.ts

,因此无效
import { environment } from './environments/environment';

if (environment.production) {
  enableProdMode();
}

并且plunker中没有environments/environment个文件。只需添加以下内容:

export const environment = { production: false };

src/environments/environment.ts,它会起作用。

Here is工作人员。