Questions tagged «angular9»

5
作业名称“ ..getProjectMetadata”不存在
我将我的角度更新为v9,当我尝试在v8中返回时,收到此错误。我已经尝试了以下方法: 卸载-global angular / cli 卸载angular / cli 回到我的最后一个package.json 删除node_module文件夹 删除仓库 该错误继续显示。 我的堆栈跟踪是: An unhandled exception occurred: Job name "..getProjectMetadata" does not exist. See angular-errors.log for further details. angular-errors.log: [error] Error: Job name "..getProjectMetadata" does not exist. at Observable._subscribe (/Front/node_modules/@angular-devkit/core/src/experimental/jobs/simple-scheduler.js:350:23) at Observable._trySubscribe (/Front/node_modules/@angular-devkit/core/node_modules/rxjs/internal/Observable.js:44:25) at Observable.subscribe (/Front/node_modules/@angular-devkit/core/node_modules/rxjs/internal/Observable.js:30:22) at /Front/node_modules/@angular-devkit/core/node_modules/rxjs/internal/util/subscribeTo.js:22:31 at Object.subscribeToResult …

1
未捕获的TypeError:无法将对象转换为原始值(zone-evergreen.js:171)
在Angular 9中(使用Bootstrap 4和Jquery 3.5.1)。单击bootstrap 折叠按钮时,在浏览器控制台上出现错误,而不是下拉菜单。 我真的不知道错误的确切来源。 Can't convert object to primitive value(zone-evergreen:171). Uncaught Type Error: Cannot convert object to primitive value(zone-evergreen.js:171 ) at RegExp.test (<anonymous>) at HTMLDivElement.<anonymous> (bootstrap.bundle.min.js:6) at Function.each (jquery.min.js:2) at S.fn.init.each (jquery.min.js:2) at S.fn.init.a._jQueryInterface [as collapse] (bootstrap.bundle.min.js:6) at HTMLDivElement.<anonymous> (bootstrap.bundle.min.js:6) at Function.each (jquery.min.js:2) at S.fn.init.each (jquery.min.js:2) at HTMLButtonElement.<anonymous> …

1
Angular 9 Ivy-通用类型'ɵɵFactoryDe​​f'需要2个类型参数
看起来Angular Ivy尚未准备好。我正在尝试使用ivular构建我的项目,这是Angular 9的主要思想。许多库与此功能不兼容,其中一个库是@angular/flex-layout。材料和服务工人也有同样的问题。 使用ng build --prod --aot -c=production脚本构建项目后,我得到了: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ node_modules/@angular/flex-layout/core/typings/media-trigger/media-trigger.d.ts:71:18 - error TS2314: Generic type 'ɵɵFactoryDef' requires 2 type argument(s). 71 static ɵfac: ɵngcc0.ɵɵFactoryDef<MediaTrigger>; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ node_modules/@angular/flex-layout/extended/typings/show-hide/show-hide.d.ts:18:18 - error TS2314: Generic type 'ɵɵFactoryDef' requires 2 type argument(s). 18 static ɵfac: ɵngcc0.ɵɵFactoryDef<ShowHideStyleBuilder>; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ node_modules/@angular/flex-layout/extended/typings/show-hide/show-hide.d.ts:49:18 - error TS2314: Generic type 'ɵɵFactoryDef' requires 2 …
17 angular  ivy  angular9 


3
检查组件上是否存在输出
考虑以下组件: @Component({ selector: 'app-test' template: 'Hello!' }} export class TestComponent { @Output() readonly selectionChange = new EventEmitter<SomeTypeHere>(); } 致电: <app-test (selectedChange)="selectedChangeHandler($event)"></app-test> 请注意,我写的selectedChange不是正确的输出名称selectionChange。strictTemplates启用了标志的Angular 9 根本对我没有帮助。它无声地失败了。有趣的是,如果我对做了同样的事情@Input,则应用程序会捕获错误并且无法编译。 如果我尝试“侦听”不存在的内容,有什么办法抛出错误@Output?

2
Angular 9-目标入口点缺少依赖项
我已将Angular库升级到Angular9。但是,当我尝试在另一个Angular 9项目中使用该库时,出现如下错误: 目标入口点“ mycomponents / entity-selector”缺少依赖项: - mycomponents/shared-services - mycomponents/spinner - mycomponents/text-input Package.json { "$schema": "../../../node_modules/ng-packagr/package.schema.json", "name": "entity-selector", "version": "0.0.0", "ngPackage": { "lib": { "entryFile": "public_api.ts" }, "dest": "../../../dist/mycomponents/entity-selector" } } 这是次要端点,它使用也是次要端点的其他组件。 在库项目中,我是否需要在ng-packgr或其他地方定义依赖项?实体选择器组件的模块将为其他组件导入适当的模块。自Angular 9起出现了这个问题。 预先感谢。
12 angular  angular9 

6
ngcc中的错误已在ID 5196的进程中运行
关闭。这个问题需要调试细节。它当前不接受答案。 想改善这个问题吗? 更新问题,使其成为Stack Overflow 的主题。 25天前关闭。 当我尝试在我的项目中运行ng serve命令时,会产生以下错误。 ngcc中的错误已在ID 5196的进程中运行
10 angular9 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.