将事件从 Parent 传递到 Child 元素(聚合物)

Passing Event from Parent to Child Element (Polymer)

我正在尝试让一个 parent 元素从它的 child 调用一个函数。在 parent 的脚本中我有:

_handleFunction: function() {
    console.log("Button Pressed!");
    this.fire('send-update');
}

然后是 child

listeners: {
    'send-update': '_update'
},

_update: function() {
    this.$$('#element').innerHTML = 0;
}

但是 child 没有发射。

我已经使用设计模式成功地向上传递了一个函数。是否可以使用相同的模式向下传递?

调用子元素的 _update() 函数的最简单方法是直接从父元素 _handleFunction() 调用它:

this.$.child._update();

其中子元素的 HTML id 必须为 'child'。