0
私はAngular2カスタムイベントが必要です。 subscribeイベントを呼び出すには?Angular2 Create map subscribe
BoardComponent.ts
onClickDelete() {
this.popupService.yesno("...?").subscribe(
yes => {
console.log("E");
},
no => {
console.log("error")
}
);
}
PopupService.ts
yesno(message: string):Observable<any> {
this.subject.next({ type: 'yesno', text: message });
let obj:Observable<any> = new Observable();
//How to..? /////////////////////////////
return obj.map(() => { return {yes:'2'}; });
}
ワウ!!だからありがとうU :) –