我想嘗試使用angular-cli創建Angular 2應用程序(https://github.com/angular/angular-cli),然後使用ng2素材(https://github.com/justindujardin/ng2-material)獲取UI組件。但我只是不明白如何/在哪裏必須包含ng2素材庫才能使用它。如何在使用angular-cli時添加第三方庫?
我創建了一個項目ng new myproject
,然後我啓動了服務器ng serve
,並打開了正常工作的網頁。下一步,我用npm install ng2-material --save
安裝了ng2素材。然後我將MATERIAL_PROVIDERS
添加到角度的引導程序中,如https://github.com/AngularShowcase/angular2-seed-ng2-material/blob/master/app/bootstrap.ts所示。
這會導致網絡瀏覽器中出現錯誤消息GET http://localhost:4200/ng2-material/all 404 (Not Found)
,我無法弄清楚如何擺脫它。
angular-cli似乎正在做一些事情來創建一個dist
-文件夾,其中index.html中使用的一些節點模塊最終進入,但我看不到在哪裏或如何配置。
轉到'your_project/src/index.html',那裏有SystemJS配置。 –