使用 EventAggregator 在 Aurelia 中更新列表

Update list in Aurelia using EventAggregator

我正在使用 app-contacts demo 来学习 Aurelia,是的,我知道,正如@Eisenberg 所提到的那样,它是不完整的,但后来我想使用 EventAggregator 来通知 app.js,当我保存联系人或创建新联系人。到现在为止一切正常。我能够在 app.js 中接收联系人对象,但现在我想更新联系人列表,这不起作用,当我保存联系人并更新 app.js 中的联系人列表时,它得到已删除。

在app.js中添加代码并在构造函数中调用订阅方法。

subscribe(){
    this.ea.subscribe('contact_event', payload => {
        console.log(payload);
        var instance = JSON.parse(JSON.stringify(payload));
        let found = this.contacts.filter(x => x.id == payload.id)[0];

        if(found){
            let index = this.contacts.indexOf(found);
            this.contacts[index] = instance;
        }else{
            instance.id = this.contacts.length + 1;
            this.contacts.push(instance);
        }
    });
}

未对 app.html

进行更改
<li repeat.for="contact of contacts" class="list-group-item ${contact.id === $parent.selectedId ? 'active' : ''}">
  <a href="#" click.delegate="$parent.select(contact)">
    <h4 class="list-group-item-heading">${contact.firstName} ${contact.lastName}</h4>
    <p class="list-group-item-text">${contact.email}</p>
  </a>
</li>

如何更新列表?

更新 这对我有用,但不确定什么是正确的方法

subscribe(){    
  this.ea.subscribe('contact_event', payload => {
    return this.api.getContactList().then(contacts => {
      this.contacts = contacts;
    });
  });
}

Eric L. Anderson 在他的博客 post 中很好地解释了它的工作原理: Aurelia's Event Aggregator。这与您尝试执行的代码类型相同!

注意:现在回答 Kishore 的问题可能为时已晚,但我将 link 放入搜索结果中的其他人。