gpt4 book ai didi

dart - 绑定(bind)函数与属性

转载 作者:行者123 更新时间:2023-12-05 01:18:13 24 4
gpt4 key购买 nike

有没有办法把函数和属性绑定(bind)起来,像这样:

<a _href="{{go('login')}}">Login</a>

然后

String go(String routePath) {
// Returns url for login
}

最佳答案

对于路由任务,您可以使用路径的附加属性进行绑定(bind):

<a route="/api/login" on-tap="{{go}}">

然后,在你的 go 函数中:

void go(Event e, var detail, Element sender) {
e.preventDefault();
fire('change-route', detail: sender.attributes['route'] );
}

关于dart - 绑定(bind)函数与属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30534317/

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