另一种选择。
OP询问了使用回调的方法。在这种情况下,他专门指的是处理事件的函数(在他的示例中为click事件),应将其视为@serginho建议的可接受答案:@Output
和EventEmitter
。
但是,回调和事件之间是有区别的:通过回调,您的子组件可以从父级检索一些反馈或信息,但是一个事件只能通知某些事情发生了,而无需任何反馈。
在某些情况下,需要反馈,例如。获取颜色或组件需要处理的元素列表。您可以按照一些答案的建议使用绑定函数,也可以使用接口(这始终是我的偏好)。
例
假设您有一个通用组件,该组件在要与所有具有这些字段的数据库表一起使用的元素{id,name}列表上进行操作。该组件应:
- 检索一系列元素(页面)并将其显示在列表中
- 允许删除一个元素
- 告知已单击某个元素,因此父级可以采取一些措施。
- 允许检索元素的下一页。
子组件
使用普通绑定,我们将需要1 @Input()
和3个@Output()
参数(但没有父级的任何反馈)。例如 <list-ctrl [items]="list" (itemClicked)="click($event)" (itemRemoved)="removeItem($event)" (loadNextPage)="load($event)" ...>
,但是创建一个接口,我们只需要一个接口@Input()
:
import {Component, Input, OnInit} from '@angular/core';
export interface IdName{
id: number;
name: string;
}
export interface IListComponentCallback<T extends IdName> {
getList(page: number, limit: number): Promise< T[] >;
removeItem(item: T): Promise<boolean>;
click(item: T): void;
}
@Component({
selector: 'list-ctrl',
template: `
<button class="item" (click)="loadMore()">Load page {{page+1}}</button>
<div class="item" *ngFor="let item of list">
<button (click)="onDel(item)">DEL</button>
<div (click)="onClick(item)">
Id: {{item.id}}, Name: "{{item.name}}"
</div>
</div>
`,
styles: [`
.item{ margin: -1px .25rem 0; border: 1px solid #888; padding: .5rem; width: 100%; cursor:pointer; }
.item > button{ float: right; }
button.item{margin:.25rem;}
`]
})
export class ListComponent implements OnInit {
@Input() callback: IListComponentCallback<IdName>; // <-- CALLBACK
list: IdName[];
page = -1;
limit = 10;
async ngOnInit() {
this.loadMore();
}
onClick(item: IdName) {
this.callback.click(item);
}
async onDel(item: IdName){
if(await this.callback.removeItem(item)) {
const i = this.list.findIndex(i=>i.id == item.id);
this.list.splice(i, 1);
}
}
async loadMore(){
this.page++;
this.list = await this.callback.getList(this.page, this.limit);
}
}
父组件
现在我们可以在父级中使用列表组件。
import { Component } from "@angular/core";
import { SuggestionService } from "./suggestion.service";
import { IdName, IListComponentCallback } from "./list.component";
type Suggestion = IdName;
@Component({
selector: "my-app",
template: `
<list-ctrl class="left" [callback]="this"></list-ctrl>
<div class="right" *ngIf="msg">{{ msg }}<br/><pre>{{item|json}}</pre></div>
`,
styles:[`
.left{ width: 50%; }
.left,.right{ color: blue; display: inline-block; vertical-align: top}
.right{max-width:50%;overflow-x:scroll;padding-left:1rem}
`]
})
export class ParentComponent implements IListComponentCallback<Suggestion> {
msg: string;
item: Suggestion;
constructor(private suggApi: SuggestionService) {}
getList(page: number, limit: number): Promise<Suggestion[]> {
return this.suggApi.getSuggestions(page, limit);
}
removeItem(item: Suggestion): Promise<boolean> {
return this.suggApi.removeSuggestion(item.id)
.then(() => {
this.showMessage('removed', item);
return true;
})
.catch(() => false);
}
click(item: Suggestion): void {
this.showMessage('clicked', item);
}
private showMessage(msg: string, item: Suggestion) {
this.item = item;
this.msg = 'last ' + msg;
}
}
请注意,<list-ctrl>
receives this
(父组件)作为回调对象。另一个优点是不需要发送父实例,它可以是服务或实现接口的任何对象(如果您的用例允许)。
完整的示例在此stackblitz上。
@Input
建议的方式使我的代码变得混乱,并且不易维护@Output
。结果,我更改了接受的答案