我是Angular4的新手。我只想用是或否按钮实现自定义确认对话模式。我已经举了几个例子。但它们都不适合我的要求。
任何方式让我在想象中编写代码(没有实现它)我想使用我的自定义确认对话,
// This code wants to open a modal with yes or no button.
// Here this.confirmationMessage may be service.
this.confirmationMessage.show("Can you help me ?")
.subscribe(yes=>{
/**yes logic*/},
no=>{
/** No logic*/
});
这样我就可以在任何地方使用它。我知道angular4有rxjs。我可以使用Observable概念来实现它。我只是想知道如果我通过使用observable来实现这个要求会是一个好方法吗?
angular4中的主题是否需要涵盖此要求? 是否有可用于此方案的库?
任何帮助将不胜感激。 :)。 谢谢