我使用角度cli 1.0.0-beta.21,我觀察到當我生成一個組件時,它不再使用moduleId: module.id
作爲相對路徑。而且,如果我嘗試使用它,它提供了一個錯誤:Angular2:moduleId不再需要?
Uncaught Error: moduleId should be a string in "Page1NinjaComponent". See link for more information.
組件
@Component({
moduleId: module.id,
selector: 'app-page1-ninja',
templateUrl: 'page1-ninja.component.html',
styleUrls: ['page1-ninja.component.css']
})
現在不再需要了?
你在tsconfig中使用commonjs模塊嗎? – echonax
我看到'tsconfig.json'中設置:'「module」:「commonjs」' - 是的 – sTx