1
爲什麼在使用templateUrl
的Angular 2
組件時需要使用moduleId:module.id
。爲什麼我們在angular2中使用moduleId:module.id
import { Component } from '@angular/core';
@Component({
moduleId:module.id,
selector: 'my-app',
templateUrl:`app.component.html`,
})
export class AppComponent { name = 'Angular 2 website'; }
'的moduleId:module.id'解決相對路徑的 – anshuVersatile
可能的複製[Angular2 - 什麼是的含義module.id in component?](http://stackoverflow.com/questions/37178192/angular2-what-is-the-meanings-of-module-id-in-component) – jonrsharpe