- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试使 Angular2
AoT
正常工作。不幸的是,当我执行 ngc
命令时,没有生成 .ngfactory 文件:
./node_modules/.bin/ngc" -p "./tsconfig-aot.json" --i18nFile="./app/compiled/localise.xlf" --locale=zh --i18nFormat=xlf
使用该配置,我的“JIT”编译工作正常,直到运行 ngc
命令,然后它也会破坏 JIT
,直到重建解决方案。
它给出的错误:
(SystemJS) XHR error (404) loading https:// <domain>/<urlPath>/traceur
Error: XHR error (404) loading https:// <domain>/<urlPath>/traceur
at XMLHttpRequest.wrapFn [as _onreadystatechange] (https://<domain>/node_modules/zone.js/dist/zone.js:889:29) [<root>]
at Zone.runTask (https:// <domain>/node_modules/zone.js/dist/zone.js:151:47) [<root> => <root>]
at XMLHttpRequest.ZoneTask.invoke (https:// <domain>/node_modules/zone.js/dist/zone.js:345:33) [<root>]
Error loading https:// <domain>/<urlPath>/traceur
Unable to load transpiler to transpile https:// <domain>/<pathToMain>/main.js
Error loading https://<domain>/<pathToMain>/main.js
我的配置:
package.json:
{
"version": "1.0.0",
"name": "aspnet",
"private": true,
"scripts": {
"postinstall": "typings install",
"typings": "typings"
},
"dependencies": {
"@angular/common": "2.4.1",
"@angular/compiler": "2.4.1",
"@angular/compiler-cli": "2.4.1",
"@angular/core": "2.4.1",
"@angular/forms": "2.4.1",
"@angular/http": "2.4.1",
"@angular/platform-browser": "2.4.1",
"@angular/platform-browser-dynamic": "2.4.1",
"@angular/platform-server": "2.4.1",
"@angular/upgrade": "2.4.1",
"@types/node": "6.0.57",
"angular-in-memory-web-api": "0.2.4",
"bootstrap": "^3.3.7",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.8",
"rxjs": "5.0.2",
"systemjs": "0.19.41",
"zone.js": "^0.7.2"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-concat": "^2.6.0",
"gulp-tsc": "^1.2.0",
"gulp-typescript": "3.1.3",
"path": "^0.12.7",
"rollup": "0.40.2",
"rollup-plugin-commonjs": "7.0.0",
"rollup-plugin-multi-entry": "^2.0.1",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-uglify": "^1.0.1",
"typescript": "^2.0.2",
"typings": "2.1.0"
}
}
tsconfig-aot.json:
{
"compileOnSave": true,
"compilerOptions": {
"module": "es2015",
"noEmitOnError": true,
"noImplicitAny": false,
"removeComments": false,
"sourceMap": true,
"target": "es5",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"app/**/*.ts"
],
"exclude": [
"node_modules",
"typings/index",
"typings/index.d.ts"
],
"angularCompilerOptions": {
"genDir": "app/compiled",
"skipMetadataEmit": true
}
}
tsconfig.json:
{
"compileOnSave": true,
"compilerOptions": {
"module": "commonjs",
"noEmitOnError": true,
"noImplicitAny": false,
"removeComments": false,
"sourceMap": true,
"target": "es5",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"app/**/app.module.ts",
"app/**/*.ts"
],
"exclude": [
"node_modules",
"typings/index",
"typings/index.d.ts"
],
"angularCompilerOptions": {
"genDir": "app/compiled",
"skipMetadataEmit": true
}
}
还有 2.0.2
版本的 TypeScript
。
Angular
并且所有包都已更新到最新版本,但没有帮助。
npm install
被调用,并生成 node_modules
。
gulp
已被调用,libs
目录也已创建。
如有任何帮助,我们将不胜感激。
最佳答案
它可能不是 2.0.2,因为你的包 json 中有插入符号 (^
)。
删除插入符(^
),删除库,安装依赖项并重试。
像这样:"typescript": "2.0.2"
关于visual-studio - Angular2 - 不会为提前编译生成 ngfactory 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41504348/
更新 我仍在努力解决这个问题,但现在 ngc cli 没有给我任何错误。但是它仍然没有生成我的 NGFactory 文件。我已将所有内容更新到最新版本。 tsconfig.js { "compile
我按照文档说明将 Ionic 从 RC1 更新到 RC3,之后我无法使用 ionic run android 或 ionic build android 在 Android 中正确运行我的应用程序。使
我已经遇到这个错误好几个小时了,到目前为止,我已经尝试了我在网上找到的所有内容。只有在使用 --env.prod 构建时,Angular Material 的每个模块才会发生错误。 webpack 配
我正在尝试使 Angular2 AoT 正常工作。不幸的是,当我执行 ngc 命令时,没有生成 .ngfactory 文件: ./node_modules/.bin/ngc" -p "./tsconf
我一直在尝试使用 ngTools 在我的 Angular 应用程序中设置 AOT(使用 Webpack 进行模块加载),并且有一段时间绝对是噩梦。我已经浏览了文档中的各种资源 here和 here以及
我的错误如下: [at-loader] assets\app\app.module.ngfactory.ts 中出现错误:28:27 找不到模块“./app.component.ngfactory”。
每当我使用 ngc 编译 Angular 2 应用程序时,它都会为每个组件创建 .ngfactory.ts 文件,然后将所有 typescript 编译为 javascript。 但是,当我第一次运行
我正在尝试为 AOT 设置我的 angular2 应用程序。这似乎需要一个 app.module.ngfactory.ts 文件,而不是用于 JIT 的标准 app.module.ts 文件汇编。我的
我正在尝试完成 Angular 的 AOT 教程: https://angular.io/docs/ts/latest/cookbook/aot-compiler.html 使用 ngc 部分有效并生
我正在尝试将已经使用延迟加载模块的应用程序转换为 AOT。我正在使用 @ngtools/webpack 工具包来编译 AOT 代码,但是我遇到了一个错误,即 Angular 无法像看起来那样找到延迟加
我无法使用 AOT (ng build --prod) 编译我的 Angular 5 应用程序。问题是什么? Module not found: Error: Can't resolve './app
我有 angular 2 webpack 应用程序,所有 webpack,karma 配置都是按照 angular.io webpack 指南创建的。我没有使用 aot。我正在编写 jasmine 单
就在昨天,我的代码运行良好,没有对应用程序模块进行任何更改,今天使用“ng build --prod”时出现此错误。我知道这与更改无关,当我拉出较旧的分支时,我得到了同样的错误。我不知道该怎么办,建议
升级 angular-cli 后出现以下错误 ERROR in Template parse errors: Can't bind to 'index' since it isn't a known
我在 Ionic 中开发了一个应用程序,当我尝试使用 --prod 部署我的应用程序时,它会抛出以下错误,而没有 --prod 则它工作正常。 命令:sudo ionic cordova build
我知道与 Module not found: Error: Can't resolve './$$_gendir/app/app.module.ngfactory' in... 相关的问题已被问及在这
我正在开发一个基于 Angular Electron Repo 的项目,使用 Angular 4 版本。当我尝试运行 npm run electron:mac , 依次运行 webpack --dis
我想让我的 Angular 应用程序 seo 友好,所以我搜索了谷歌并找到了几个解决方案 Make your Angular App SEO-Friendly (Angular 4 + Univers
我正在为我的组件编写一些单元测试,但我收到了这个神秘的错误消息。我在 Angular 2 unit testing - getting error Failed to load 'ng:///Dyna
我们已经构建了小型 angular 7/ionic 4 库,我们希望通过 git url 安装在内部的多个项目中使用这些库。服务项目正常工作,所有从图书馆进口工作正常。但是在运行 ng build -
我是一名优秀的程序员,十分优秀!