我想要实现的是,在angular2中全局发出一个自定义事件,让多个组件监听它,而不仅仅是父-子模式export class EventSourceComponent{new EventEmitter();
this.testev.emit("i have emitted an event") }
现在,我希望其他组件也能获得此事件
在我的程序中,我创建了一个菜单,您可以在其中选择不同的菜肴。问题是,如果他们取消选择某些东西,它仍然会被添加到总数中,在提交他们的选择后,我必须重新运行程序,以便选择新的选择。当他们取消选中它时,它不会在提交后仍然添加并刷新菜单,我该怎么做? private class SelectionListener implements ActionListener {
public void actionPerformed(ActionEvent event) {
if (edama
在代码的不同部分为JComponent添加少量侦听器是一个很好的实践吗?我应该创造一个更大的听众吗? JTextField textField = new JTextField(); { public void keyTyped(KeyEvent e) public void keyPressed(KeyEve