我想从Polymer元素内部触发/发送/发出自定义事件。例如,我想将像“已更改”这样的普通DOM事件转换为更像“todoupdated”的语义事件。
这是我的HTML:
<polymer-element name="todo-item" extends="li" attributes="item">
<template>
<style>
label.done {
color: gray;
text-decoration: line-through;
}
</style>
<label class="checkbox {{item.doneClass}}">
<input type="checkbox" checked="{{item.done}}">
{{item.text}}
</label>
</template>
<script type="application/dart" src="todo_item.dart"></script>
</polymer-element>
我希望复选框上的更改事件从自定义元素中冒出来,因为它更有用...... :)
答案 0 :(得分:30)
捕获<input>
上的更改事件。请注意下面的on-change
。
<!-- from inside todo_item.html -->
<input type="checkbox" checked="{{item.done}}" on-change="{{change}}">
处理包含复选框的自定义元素代码中的更改事件。
import 'package:polymer/polymer.dart';
import 'dart:html';
import 'models.dart';
@CustomTag('todo-item')
class TodoItemElement extends PolymerElement with ObservableMixin {
@observable Item item;
bool get applyAuthorStyles => true;
void change(Event e, var details, Node target) {
// do stuff here
}
}
注意change
事件处理程序。只要复选框状态发生变化,就会运行该方法。
发送自定义事件。
void change(Event e, var details, Node target) {
dispatchEvent(new CustomEvent('todochange'));
}
注意:自定义事件名称不得包含短划线。
在父自定义元素中侦听自定义事件。
<template repeat="{{item in items}}" >
<li is="todo-item" class="{{item.doneClass}}" item="{{item}}" on-todochange="todoChanged"></li>
</template>
请注意使用on-todochange
。
享受!
答案 1 :(得分:9)
Polymer有一个简化触发事件的辅助方法
// dispatch a custom event
this.fire('polymer-select', detail: {'item': item, 'isSelected': isSelected});
其他信息:
要使订阅者能够以编程方式添加侦听器
// getter
async.Stream<dom.CustomEvent> get onPolymerSelect =>
PolymerSelection._onPolymerSelect.forTarget(this);
// private EventStreamProvider
static const dom.EventStreamProvider<dom.CustomEvent> _onPolymerSelect =
const dom.EventStreamProvider<dom.CustomEvent>('polymer-select');
以编程方式订阅事件,而不是以声明方式订阅:
($['#ps'] as PolymerSelect) // get the children and cast it to its actual type
.onPolymerSelect.listen((e) => print(e['isSelected'])); // subscribe
答案 2 :(得分:1)
我使用<core-signals>
和聚合物辅助方法fire
进行了管理。这样,您就可以侦听从不是子元素的元素触发的事件。 source
todochange.html
<!doctype html>
<polymer-element name="todo-item" extends="li">
<template>
<style>
label.done {
color: gray;
text-decoration: line-through;
}
</style>
<label class="checkbox {{item.doneClass}}">
<input type="checkbox" checked="{{item.done}}">
{{item.text}}
</label>
</template>
<script type="application/dart" src="todo_item.dart"></script>
</polymer-element>
todochange.dart
import 'package:polymer/polymer.dart';
import 'dart:html';
@CustomTag('todo-item')
class TodoItemElement extends PolymerElement {
@observable Item item;
void change(Event e, var details, Node target) {
// the name is the name of your custom event
this.fire( "core-signal", detail: { "name": "todochange" } );
}
}
然后任何订阅者都必须这样做
subscriber.html
...
<link rel="import" href="packages/core_elements/core_signals.html>
...
<template>
<core-signals on-core-signal-todochange="{{handleToDoChange}}"></core-signals>
...
</template>
subscriber.dart
@CustomTag( "subscriber" )
class Sub extends PolymerElement {
...
void handleToDoChange( Event e, var detail, Node target ) {
print( "Got event from <todo-item>" );
}
...
}