gpt4 book ai didi

dart - 如何在捕获模式下监听 keyUp 事件?

转载 作者:行者123 更新时间:2023-12-01 01:09:57 25 4
gpt4 key购买 nike

我正在查看 Dart API 以找到一种使用捕获模式监听 KeyUp 事件的方法。但是有了这个新的流系统,就没有参数来指定捕获了:

document.body.onKeyUp.listen(callback); // where's the old "useCapture" parameter?

最佳答案

要使用 Streams 实现相同的目的,这里有一个示例:

Element.keyUpEvent.forTarget(document.body, useCapture: true).listen((e) {
// Do your stuff.
print('Here we go');
});

我们上面使用的方法,为您创建一个带有捕获模式的流。 Stream 接口(interface)(listen() 方法)非常通用,因此无法提供您正在寻找的特定功能。

关于dart - 如何在捕获模式下监听 keyUp 事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15832219/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com