gpt4 book ai didi

javascript - flutter(Dart)有没有类似js bind的功能?

转载 作者:行者123 更新时间:2023-11-30 19:57:17 25 4
gpt4 key购买 nike

flutter(Dart)有类似js bind的功能吗?我想在 flutter 中做类似的事情。

喜欢:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js">
</script>
<script>
function handlerName(e)
{
alert(e.data.msg);
}
$(document).ready(function(){
$("p").bind("click", {msg: "chicked!"}, handlerName)
});
</script>
</head>
<body>

<p>click me!</p>

</body>
</html>

最佳答案

Dart 中没有bind

但这也可以做你想做的:

onReady.listen((e) => handlerName(e, msg: 'clicked'))

关于javascript - flutter(Dart)有没有类似js bind的功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53834060/

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