link_to_remote 是否有等效的 :disable_with ?
我有一个 link_to_remote,我想确保人们在等待它返回时只能单击它一次。
有没有什么好的方法可以在有人点击后禁用它? (更改链接的文本也很好,但我也想禁用它以确保)。
顺便说一句,这是 Ruby on Rails。
I have a link_to_remote and I want to make sure people can only click it once while waiting for it to return.
Is there a good way to disable it after someone clicks it? (Changing the text of the link is nice too, but I want to disable it also to be sure).
This is Ruby on Rails btw.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法禁用链接,但可以更改 href 例如。
因此,您可以使用 :before 或 :loading 挂钩来使用 javascript “禁用”链接。
You can't disable a link, but you can change the href for example.
So you can use :before or :loading hooks to "disable" the link using javascript .
我最终像埃德加德建议的那样替换了 :before 块中的链接:
注意这使用了 JQuery。如果您使用原型,您可能需要将“.html”方法更改为原型等效方法(我相信“.update”)。
然后在进行 AJAX 调用后,它会使用类似的内容重绘 link_to_remote...
第一部分中的 link_to_remote 应该真正位于同一部分中以保持干燥
I ended up replacing the link in the :before block like Edgard suggested:
Note this uses JQuery. If you're using prototype you might need to change the '.html' method to the prototype equivalent ('.update' I believe).
Then after the AJAX call is made it redraws the link_to_remote with something like...
The link_to_remote in the first part should really be in that same partial to keep it DRY