今天就跟大家聊聊有關(guān)怎么在angular-cli中利用webpack創(chuàng)建多個(gè)包,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
創(chuàng)新互聯(lián)公司2013年開創(chuàng)至今,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目網(wǎng)站制作、成都做網(wǎng)站網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元嵐皋做網(wǎng)站,已為上家服務(wù),為嵐皋各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:18982081108
-cli.json中的配置
{ "project": { "version": "1.0.0-beta.15", "name": "maddy-test-project" }, "apps": [ { "root": "src", "outDir": "dist", "assets": "styles/content", "index": "default.htm", "main": "main.ts", "test": "test.ts", "tsconfig": "tsconfig.json", "prefix": "", "mobile": false, "styles": [ "styles.less" ], "scripts": [ "styles/wfa-myriad-pro-typekit.js" ], "environments": { "source": "environments/environment.ts", "dev": "environments/environment.ts", "prod": "environments/environment.prod.ts" } } ], "addons": [], "packages": [], "e2e": { "protractor": { "config": "./protractor.conf.js" } }, "test": { "karma": { "config": "./karma.conf.js" } }, "defaults": { "styleExt": "less", "prefixInterfaces": false } }
下面是package.json
{ "name": "maddy-test-project", "version": "0.0.1", "license": "MIT", "angular-cli": {}, "scripts": { "start": "ng serve", "lint": "tslint \"src/**/*.ts\"", "test": "ng test", "pree2e": "webdriver-manager update", "e2e": "protractor" }, "private": true, "dependencies": { "@angular/common": "2.0.0", "@angular/compiler": "2.0.0", "@angular/core": "2.0.0", "@angular/forms": "2.0.0", "@angular/http": "2.0.0", "@angular/platform-browser": "2.0.0", "@angular/platform-browser-dynamic": "2.0.0", "@angular/router": "3.0.0", "d3": "^4.2.3", "jquery": "^3.1.0", "lodash": "^4.15.0", "moment": "^2.15.0", "core-js": "^2.4.1", "rxjs": "5.0.0-beta.12", "toastr": "^2.1.2", "ts-helpers": "^1.1.1", "zone.js": "^0.6.23", "bootstrap-daterangepicker": "^2.1.24" }, "devDependencies": { "@types/d3": "^3.5.35", "@types/google-maps": "^3.1.27", "@types/jasmine": "^2.2.30", "@types/jquery": "^1.10.31", "@types/lodash": "^4.14.34", "@types/toastr": "^2.1.29", "angular-cli": "1.0.0-beta.15", "codelyzer": "~0.0.26", "jasmine-core": "2.4.1", "jasmine-spec-reporter": "2.5.0", "karma": "1.2.0", "karma-chrome-launcher": "^2.0.0", "karma-cli": "^1.0.1", "karma-jasmine": "^1.0.2", "karma-remap-istanbul": "^0.2.1", "protractor": "4.0.5", "ts-node": "1.2.1", "tslint": "3.13.0", "typescript": "2.0.2" } }
提前致謝??!
它是NgModule和RouterModule.forChild()的作用.這是一個(gè)非常好的文章,用于啟動(dòng)大型角度2模塊化應(yīng)用開發(fā): http://blog.angular-university.io/angular2-ngmodule/
The first thing that we need to do is to remove every mention of the Home component or the HomeModule from the App component and the main routing configuration:
We can see here that the App component no longer imports HomeModule, instead the routing config uses loadChildren to say that if /home or any other url starting with it gets hit, then the file home.module should be loaded via an Ajax call.
很快,為了在一個(gè)懶惰模塊中移動(dòng)一些邏輯和組件,您可以運(yùn)行以下命令:
ng g module child --routing
然后angular-cli將生成一個(gè)NgModule(app / child / child.module.ts)和一個(gè)子路由器配置(app / child / child-routing.module.ts).
延遲加載此子路由器的路由將是:
{ path: 'child', loadChildren: 'app/child/child.module#ChildModule' }
看完上述內(nèi)容,你們對(duì)怎么在angular-cli中利用webpack創(chuàng)建多個(gè)包有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。