- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的@Output 有问题,或者至少父组件中的事件有问题。父级 HTML:
<h1>Accountmanagement</h1>
<button class="add" (click)="onAddEmployee()">Add Employee</button>
<table>
<tr>
<th>Username</th>
<th>E-Mail</th>
<th>Discord</th>
<th>First Name</th>
<th>Forum</th>
<th>Gitlab</th>
<th>Redmine</th>
<th>Gameserver</th>
<th>Docu-Server</th>
</tr>
</table>
<div class="overlay" *ngIf="showOverlay"></div>
<br>
<br>
<div class="interface" *ngIf="showOverlay">
<employee-dialog [employee]="employee" (end)="onEnd($event)"></employee-dialog>
</div>
父 TS:
import { Component } from '@angular/core';
import { Employee } from '../../Dataclasses/Employee';
import { EmployeeDialog } from './EmployeeDialog/EmployeeDialog';
@Component({
selector: 'employee-list',
templateUrl: 'EmployeeList.html',
styleUrls: ["EmployeeList.css"]
})
export class EmployeeList {
employees: Employee[];
employee: Employee = new Employee();
showOverlay: boolean = false; //if the overlay and popup is shown
constructor() {
//intitialize employees (from DB)
}
onAddEmployee(): void {
this.showOverlay = true;
}
onEnd(empl: Employee) {
console.log("test");
}
}
子 TS:
import { Component, Inject, Input, Output } from '@angular/core';
import { Employee } from '../../../Dataclasses/Employee';
import { EventEmitter } from 'events';
@Component({
selector: 'employee-dialog',
templateUrl: 'EmployeeDialog.html',
styleUrls: ['EmployeeDialog.css']
})
export class EmployeeDialog {
@Input() employee: Employee;
@Output() end = new EventEmitter<Employee>();
private isNew: boolean = false; //wether the employee is a new created or not - important for the conrirmation buttons at the end
private cacheEmployee: Employee
public ngOnInit(): void {
if (this.employee.getUsername() == "") {
this.isNew = true;
}
this.cacheEmployee = this.employee;
}
public cancel(): void {
if (confirm("Do you want to discard all changes?")) {
this.end.emit(this.cacheEmployee);
}
}
public save(): void {
//send to DB here too
if (this.isNew) {
//create accounts
}
if (this.employee.checkData()) {
this.end.emit(this.employee);
}
}
}
重要的事情:我在 Parent-HTML 的以下行中收到错误:
<employee-dialog [employee]="employee" (end)="onEnd($event)"></employee-dialog>
错误日志:
EmployeeList.html:20 ERROR TypeError: instance[output.propName].subscribe is not a function
at createDirectiveInstance (core.js:12330)
at createViewNodes (core.js:13784)
at createEmbeddedView (core.js:13661)
at callWithDebugContext (core.js:15098)
at Object.debugCreateEmbeddedView [as createEmbeddedView] (core.js:14410)
at TemplateRef_.createEmbeddedView (core.js:11736)
at ViewContainerRef_.createEmbeddedView (core.js:11448)
at NgIf._updateView (common.js:2845)
at NgIf.set [as ngIf] (common.js:2801)
at updateProp (core.js:12661)
View_EmployeeList_2 @ EmployeeList.html:20
EmployeeList.html:20 ERROR CONTEXT DebugContext_component: (...)componentRenderElement: (...)context: (...)elDef: {nodeIndex: 2, parent: {…}, renderParent: {…}, bindingIndex: 0, outputIndex: 0, …}bindingFlags: 0bindingIndex: 0bindings: Array(0)length: 0__proto__: Array(0)concat: ƒ concat()constructor: ƒ Array()copyWithin: ƒ copyWithin()entries: ƒ entries()every: ƒ every()fill: ƒ fill()filter: ƒ filter()find: ƒ find()findIndex: ƒ findIndex()forEach: ƒ forEach()includes: ƒ includes()indexOf: ƒ indexOf()join: ƒ join()keys: ƒ keys()lastIndexOf: ƒ lastIndexOf()length: 0map: ƒ map()pop: ƒ pop()push: ƒ push()reduce: ƒ reduce()reduceRight: ƒ reduceRight()reverse: ƒ reverse()shift: ƒ shift()slice: ƒ slice()some: ƒ some()sort: ƒ sort()splice: ƒ splice()toLocaleString: ƒ toLocaleString()toString: ƒ toString()unshift: ƒ unshift()values: ƒ values()Symbol(Symbol.iterator): ƒ values()Symbol(Symbol.unscopables): {copyWithin: true, entries: true, fill: true, find: true, findIndex: true, …}__proto__: ObjectcheckIndex: 2childCount: 1childFlags: 114688childMatchedQueries: 0directChildFlags: 114688element: {ns: "", name: "employee-dialog", attrs: Array(0), template: null, componentProvider: {…}, …}flags: 33554433matchedQueries: {}matchedQueryIds: 0ngContent: nullngContentIndex: nullnodeIndex: 2outputIndex: 0outputs: [{…}]parent: {nodeIndex: 0, parent: null, renderParent: null, bindingIndex: 0, outputIndex: 0, …}provider: nullquery: nullreferences: {}renderParent: {nodeIndex: 0, parent: null, renderParent: null, bindingIndex: 0, outputIndex: 0, …}text: null__proto__: ObjectelOrCompView: (...)elView: {def: {…}, parent: {…}, viewContainerParent: null, parentNodeDef: {…}, context: NgIfContext, …}component: EmployeeList {employee: Employee, showOverlay: true}context: NgIfContext {$implicit: true, ngIf: true}def: {factory: ƒ, nodeFlags: 33669123, rootNodeFlags: 1, nodeMatchedQueries: 0, flags: 0, …}disposables: (2) [ƒ, empty]initIndex: -1nodes: (5) [{…}, {…}, {…}, empty × 2]oldValues: [empty]parent: {def: {…}, parent: {…}, viewContainerParent: null, parentNodeDef: {…}, context: EmployeeList, …}parentNodeDef: {nodeIndex: 47, parent: null, renderParent: null, bindingIndex: 1, outputIndex: 1, …}renderer: DebugRenderer2 {delegate: EmulatedEncapsulationDomRenderer2, data: {…}}root: {ngModule: NgModuleRef_, injector: _NullInjector, projectableNodes: Array(0), selectorOrNode: "employee-list", sanitizer: DomSanitizerImpl, …}state: 13viewContainerParent: null__proto__: Objectinjector: (...)nodeDef: {nodeIndex: 3, parent: {…}, renderParent: {…}, bindingIndex: 0, outputIndex: 1, …}nodeIndex: 3providerTokens: (...)references: (...)renderNode: (...)view: {def: {…}, parent: {…}, viewContainerParent: null, parentNodeDef: {…}, context: NgIfContext, …}component: EmployeeList {employee: Employee, showOverlay: true}context: NgIfContext {$implicit: true, ngIf: true}def: {factory: ƒ, nodeFlags: 33669123, rootNodeFlags: 1, nodeMatchedQueries: 0, flags: 0, …}disposables: (2) [ƒ, empty]initIndex: -1nodes: (5) [{…}, {…}, {…}, empty × 2]oldValues: [empty]parent: {def: {…}, parent: {…}, viewContainerParent: null, parentNodeDef: {…}, context: EmployeeList, …}parentNodeDef: {nodeIndex: 47, parent: null, renderParent: null, bindingIndex: 1, outputIndex: 1, …}renderer: DebugRenderer2 {delegate: EmulatedEncapsulationDomRenderer2, data: {…}}root: {ngModule: NgModuleRef_, injector: _NullInjector, projectableNodes: Array(0), selectorOrNode: "employee-list", sanitizer: DomSanitizerImpl, …}state: 13viewContainerParent: null__proto__: Object__proto__: Object
View_EmployeeList_2 @ EmployeeList.html:20
我做错了什么?没有 (end)="onEnd($event)"
一切正常......?我只想处理事件并获取与 $events 一起传递的数据,以便在我的父类中使用它。已经感谢您的回答!
最佳答案
您需要从 '@angular/core'
EventEmitter
改变
import { EventEmitter } from 'events';
到
import { EventEmitter } from '@angular/core';
关于javascript - Angular 输出不起作用 - instance[output.propName].subscribe 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50009198/
我正在使用 Swift Joint,但不明白两者之间的区别 func subscribe(_ subscriber: S) where S : Subscriber, Self.Failure ==
大多数 Flowable.subscribe() 重载返回一个 Disposable ,它可以清理流。我习惯于这样做: Disposable d = Flowable.just() .map(
我正在尝试测试主题 symbol$ 的输出存在于我的组件上。 具体来说,当组件属性 symbol 时,主题符号 $ 应该发出(这是正确的词吗?)已经改变。 但是,我找不到测试输出到 symbol$ 的
Observable.just(10,20,30,40,50) .subscribe { Consumer{ Log.d(TAG, "Where
我在 subscribe 中有带有 subscribe 的代码: this.http.post('/update1', newData).subscribe( (response) => {
我有两个页面/模板, 仪表板(还包含一些用户特定数据)。 用户。 我正在使用带有 Blaze 模板的 Meteor 1.5。登陆页面是仪表板。我在两个模板中都使用集合 Users 的通用订阅。 场景
我刚接触 Angular2 一周! 基本上有 2 个 API 调用。 第一个 API 调用为我提供了一个 json 对象数组 (queryResults)。 (第一次订阅) 在 View 中显示该数组
我已经在 stackoverflow 上尝试了很多关于修复此错误的提议,但现在我只需要问一下,因为我已经花了很多时间,现在一无所获。 我有这个简单的服务: constructor(private ht
给定一个配置有任务执行器的发布-订阅 channel ,如果抛出异常,是否可以中断其有序订阅者的调用? 例如,在此示例中,“已工作”消息仍然由序列中的第二个服务激活器发送。我希望这种事不要发生。
我正在尝试使用 Intent to PDF 应用程序下载和发送 pdf 以显示此处显示的文件 answer of JDenais这是下载 pdf 并通过 Intent 传递它的代码。 public c
我目前正在调查 RxJS's .merge但是我也会在这里问这个问题,因为我发现这里的解释有时非常精彩。 好的,我有一个根据用户输入打开模态窗口的表单,我订阅模态关闭事件并传回一些我将在调用/订阅服务
我刚刚对我的 Angular 6 应用程序进行了 ng 升级,现在我得到: ERROR in node_modules/@angular/flex-layout/core/typings/observ
如果您有一个事件驱动的架构并且订阅事件的服务在继续创建链中的下一个事件之前必须等待多个事件(相同类型),那么最佳实践是什么? 一个例子是图书订单处理服务,它必须等待订单中的每一本书都被仓库处理,然后再
我使用下面的代码进行异步调用,我想知道在 getData() 函数中生成的 data 的值,但是,我得到 undefined 因为调用还没有解决。有什么办法可以解决吗? getData(address
我在订阅我的 HTML 页面中的下拉值更改时遇到实现 knockout Js 的问题。这是我的 HTML Request Types :
函数定义 resetComponent(){ console.log("1st"); ... this.background = { }; this.uploadMode = fals
在我的代码中,我正在使用 @Subscribe 注释来监听事件: @Subscribe public void orderUpdate(OrderUpdateEvent event) 我的问题是,对于
我正在使用 Angular2 和 NodeJS 编写 API,我正在为我的 ِAPI 实现服务,该 API 应该获取任务列表并显示它。这是任务服务: import {Injectable} from
我正在尝试使用来自服务器的 json 响应创建动态菜单,但出现此错误: MenuComponent.html:4 ERROR TypeError: Cannot read property 'subs
我查看了许多资源,包括 this , this和 this ,但我一直无法达到预期的效果。 我要做的就是验证用户(使用 firebase),然后在验证后加载他们的配置文件并将其存储在变量 userPr
我是一名优秀的程序员,十分优秀!