gpt4 book ai didi

javascript - 在 Aurelia 中使用 href 发送多个数据

转载 作者:行者123 更新时间:2023-12-01 03:51:46 26 4
gpt4 key购买 nike

如何在 Aurelia 中使用 href 发送多个数据?

This works: <a href="#/candidate/upload/${cid}?t=${item.heading}">

只需要语法。

Not working:<a href="#/candidate/upload/${cid}?t=${item.heading};s=${item.sw_casedocumentid}">

最佳答案

这可以使用 route-href 自定义属性来完成。我猜你的路由配置看起来像这样:

{ route: 'candidate/upload/:cid', name: 'upload', ... }

路由器最酷的一点是,如果您向其传递路由上不存在的参数,它只会将它们添加到查询字符串中:

<a route-href="route: 'upload', 
params.bind: { cid: cid; t: item.heading; s: item.sw_casedocumentid }"></a>

这将生成一个看起来像您想要的样子的链接。

关于javascript - 在 Aurelia 中使用 href 发送多个数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43118403/

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