如何在Rails UJS中设置超时?
新的、很酷的语法允许我编写:
link_to some_path, :remote => true
生成 AJAX 请求。但如果我需要更长的超时时间(例如100000ms),我可以在哪里设置呢?我读了 link_to 但什么也没找到。
The new and cool syntax allows me to write:
link_to some_path, :remote => true
to generate an AJAX request. But if I need longer timeout(e.g. 100000ms), where can I set it? I read link_to but found nothing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果未显式传递超时,您可以使用 jquery-ujs 中的 $.rails.ajax 属性来注入超时:
You can use $.rails.ajax property from jquery-ujs, to inject the timeout if it has not been passed explicitly: