角度 4 AOT 构建问题,引导错误



我用Angular CLI创建了一个Angular 4 hello world应用程序,我想尝试使用AOT/WEBPACK构建的生产版本,但我无法使其工作。我按照 angular.io 网站(https://angular.io/docs/ts/latest/cookbook/aot-compiler.html(中的步骤操作。当我构建时,出现引导错误。

tsconfig.json

{
  "compileOnSave": false,
  "compilerOptions": {
    "outDir": "./dist/out-tsc",
    "baseUrl": "src",
    "sourceMap": true,
    "declaration": false,
    "moduleResolution": "node",
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "target": "es5",
    "typeRoots": [
      "node_modules/@types"
    ],
    "lib": [
      "es2016",
      "dom"
    ]
  }
}

包.json

{
  "name": "angular2-aot",
  "version": "0.0.0",
  "license": "MIT",
  "scripts": {
    "ng": "ng",
    "start": "ng serve",
    "build": "ng build",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e"
  },
  "private": true,
  "dependencies": {
    "@angular/common": "^4.0.0",
    "@angular/compiler": "^4.0.0",
    "@angular/core": "^4.0.0",
    "@angular/forms": "^4.0.0",
    "@angular/http": "^4.0.0",
    "@angular/platform-browser": "^4.0.0",
    "@angular/platform-browser-dynamic": "^4.0.0",
    "@angular/router": "^4.0.0",
    "core-js": "^2.4.1",
    "rxjs": "^5.1.0",
    "zone.js": "^0.8.4"
  },
  "devDependencies": {
    "@angular/cli": "1.0.0",
    "@angular/compiler-cli": "^4.0.0",
    "@types/jasmine": "2.5.38",
    "@types/node": "~6.0.60",
    "codelyzer": "~2.0.0",
    "jasmine-core": "~2.5.2",
    "jasmine-spec-reporter": "~3.2.0",
    "karma": "~1.4.1",
    "karma-chrome-launcher": "~2.0.0",
    "karma-cli": "~1.0.1",
    "karma-coverage-istanbul-reporter": "^0.2.0",
    "karma-jasmine": "~1.1.0",
    "karma-jasmine-html-reporter": "^0.2.2",
    "protractor": "~5.1.0",
    "rollup": "^0.41.6",
    "rollup-plugin-commonjs": "^8.0.2",
    "rollup-plugin-node-resolve": "^3.0.0",
    "rollup-plugin-uglify": "^2.0.0",
    "ts-node": "~2.0.0",
    "tslint": "~4.5.0",
    "typescript": "~2.2.0"
  }
}

索引.html

<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <title>Angular2-AOT</title>
  <base href="/">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
  <app-root>Loading...</app-root>
</body>
</html>

主目录

import { enableProdMode } from '@angular/core';
import { platformBrowser }    from '@angular/platform-browser';
import { AppModuleNgFactory } from '../aot/src/app/app.module.ngfactory';
import { environment } from './environments/environment';
if (environment.production) {
  enableProdMode();
}
platformBrowser().bootstrapModuleFactory(AppModuleNgFactory);

当我构建时,我得到以下错误

吴建 --产品

Tried to find bootstrap code, but could not. Specify either statically analyzable bootstrap code or pass in an entryModule to the plugins options.
Error: Tried to find bootstrap code, but could not. Specify either statically analyzable bootstrap code or pass in an entryModule to the plugins options.
    at Object.resolveEntryModuleFromMain (E:Angular2angular2-aotnode_modules@ngtoolswebpacksrcentry_resolver.js:128:11)
    at AotPlugin._setupOptions (E:Angular2angular2-aotnode_modules@ngtoolswebpacksrcplugin.js:142:50)
    at new AotPlugin (E:Angular2angular2-aotnode_modules@ngtoolswebpacksrcplugin.js:26:14)
    at _createAotPlugin (E:Angular2angular2-aotnode_modules@angularclimodelswebpack-configstypescript.js:55:12)
    at Object.exports.getAotConfig (E:Angular2angular2-aotnode_modules@angularclimodelswebpack-configstypescript.js:89:19)
    at NgCliWebpackConfig.buildConfig (E:Angular2angular2-aotnode_modules@angularclimodelswebpack-config.js:26:37)
    at Class.run (E:Angular2angular2-aotnode_modules@angularclitasksbuild.js:26:92)
    at Class.run (E:Angular2angular2-aotnode_modules@angularclicommandsbuild.js:143:26)
    at Class.<anonymous> (E:Angular2angular2-aotnode_modules@angularcliember-clilibmodelscommand.js:134:17)
    at process._tickCallback (internal/process/next_tick.js:109:7)

请做 1 件事运行 npm -g 安装 @angular/cli

然后创建生产版本

可能是角度CLI旧版本问题

如果您仍然发现问题,请在 main 中输入以下代码.js

import { WfaNg2Module } from './app';

和改变

platformBrowser().bootstrapModuleFactory(AppModuleNgFactory);

document.addEventListener('DOMContentLoaded', function () {
  platformBrowserDynamic().bootstrapModule(WfaNg2Module, []);
}, false);

如果这没有帮助,请告诉我

您不必再使用 module: module.id。它适用于以前的Angular 2版本。

请参阅 -> https://angular.io/docs/ts/latest/cookbook/aot-compiler.html

相对于组件的模板网址

AOT 编译器要求外部模板和 CSS 文件的@Component URL 是相对于组件的。这意味着 @Component.templateUrl 的值是相对于组件类文件的 URL 值。例如,"app.component.html"URL 表示模板文件是其配套 app.component.ts 文件的同级文件。

虽然 JIT 应用 URL 更灵活,但请坚持使用组件相对 URL,以便与 AOT 编译兼容。

import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { enableProdMode } from '@angular/core';
import { environment } from './environments/environment';
import { AppModuleNgFactory } from '../aot/src/app/app.module.ngfactory';
import { BSystemService } from './bGlobal/BSystemService';
let bSystemService: BSystemService = BSystemService.getInstance();
if (environment.production) {
enableProdMode();
}
if (bSystemService.deviceType == 'MOBILE') {
document.addEventListener('deviceready', function() {
bootstrapNow();
});
} else {
bootstrapNow();
}
function bootstrapNow() {
platformBrowserDynamic().bootstrapModule(AppModuleNgFactory);
}`

最新更新