避免 HTML 请求并仅进行 js 调用 - ruby on Rails
我正在使用 Ruby-On-Rails 开发一个 Web 应用程序。它大量使用 JavaScript。问题是,当用户点击一个应该调用 JS 的链接时,如果 JavaScript 被禁用或由于互联网连接速度慢而无法完全加载;它发出 HTML 请求。这给了我错误“缺少模板”。我不想将用户重定向到任何 HTML 页面模板。
当 JavaScript 关闭时如何禁用链接?或者强制只进行 JS 调用?我想实现类似 Twitter 的东西。
非常感谢任何帮助。谢谢 :)
I'm developing a web app in Ruby-On-Rails. It heavily uses JavaScript. The problem is, when user clicks on a link which is suppose to make JS call and if the JavaScript is disabled or fails to load completely due to slow internet connection; it makes HTML request. This gives me error "Missing template". I don't want to redirect user to any HTML page template.
How can I disable link when JavaScript is turned off? or force to make only JS call? I want to implement something similar like Twitter.
Any help highly appreciated. Thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不想让链接实际处理 href 并转到任何地方,请将链接的 href 设置为
"#"
而不是真正的 URL。If you never want the link to actually process the href and go anywhere, then set the href for the link to
"#"
rather than a real URL.