>我正在尝试从服务方法执行组件方法。我看到了其他 2 个线程:
链接 1 - 如何从服务调用组件方法?
链接 2 - Angular2 从服务调用组件
但它们显示了从构造函数执行的方法。
我正在Ionic应用程序上使用离子选择组件(很多选择(,为此我正在使用功能调用操作表,该表为从选择中选择的每个选项都有一个回调处理程序。
操作位于服务上,因此处理程序调用。但是每个选择都有自己的方法,需要从操作表中调用。这就是我现在的代码:
选择示例
import { Component, EventEmitter, Input, Output } from '@angular/core';
import { ActionSheetService } from '../../services/action-sheet.service';
import { Type } from '../../models/general/type.model';
@Component({
selector: 'type-select-component',
templateUrl: 'type-select.component.html',
providers: [ ActionSheetService ]
})
export class TypeSelectComponent {
@Input() public types: Object[];
@Output() public typeId: EventEmitter<number> = new EventEmitter<number>();
public updatedItem: Type = new Type();
private actionTitle: string = "What's Type"
constructor( private actionSheetService: ActionSheetService ) { }
//The Service should execute this method
public updateSelectItem(id:number, type: Type): void{
this.updatedItem = type;
this.typeId.emit(id);
}
public presentActionSheet(): void {
//calling the service method passing options for the action sheet
this.actionSheetService.presentActionSheet(this.actionTitle,this.types as Type[]);
}
}
行动表服务
import { Injectable } from '@angular/core';
import { ActionSheetController } from 'ionic-angular'
@Injectable()
export class ActionSheetService {
constructor(private actionSheetCtrl: ActionSheetController) { }
public presentActionSheet(
actionTitle: string,
items: any[]): void {
let actionSheet = this.actionSheetCtrl.create({
title: actionTitle
});
for (let i = 0; i < items.length; i++) {
actionSheet.addButton({
text: items[i].name,
cssClass: items[i].css,
icon: items[i].selectIcon,
handler: () => {
//Here I should execute the method updateSelectItem from the component
updateSelectItem(i, items[i]);
console.log('Service ActionHandler');
}
});
}
actionSheet.addButton({ text: 'Cancel', 'role': 'cancel' });
actionSheet.present();
}
}
我为什么要这样做???好吧,我可以在每个选择中放置一个操作表...但随后它会干涸
有什么帮助吗?
可以将回调传递给服务,并将其设置为操作表的处理程序。
public presentActionSheet(
actionTitle: string,
items: any[],
callbackHandler:any): void {
let actionSheet = this.actionSheetCtrl.create({
title: actionTitle
});
for (let i = 0; i < items.length; i++) {
actionSheet.addButton({
text: items[i].name,
cssClass: items[i].css,
icon: items[i].selectIcon,
handler: () => {
callbackHandler(i, items[i]);//call the handler passed
console.log('Service ActionHandler');
}
});
}
actionSheet.addButton({ text: 'Cancel', 'role': 'cancel' });
actionSheet.present();
}
在您的组件中
public presentActionSheet(): void {
//calling the service method passing options for the action sheet
this.actionSheetService.presentActionSheet(this.actionTitle,this.types as Type[],this.updateSelectItem.bind(this) );//send your component function. Do not forget to bind the context
}