gpt4 book ai didi

javascript - 将 JS 函数转换为 Dart

转载 作者:行者123 更新时间:2023-11-29 17:47:07 25 4
gpt4 key购买 nike

我有一个小的 js 代码来修复 iOS 设备上的一个想法,但我不知道如何在 Dartlang 中使用 touchend 事件编写该代码。如何将该 js 代码转换为 dartlang?

JS代码:

(function(l){var i,s={touchend:function(){}};for(i in s)l.addEventListener(i,s)})(document);

最佳答案

import 'dart:html';

main() {
var listeners = {
'touchend': (e) {},
};
listeners.forEach((type, listener) {
document.addEventListener(type, listener);
});
}

关于javascript - 将 JS 函数转换为 Dart,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48254852/

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