处理数据时的简单模态
我想使用 Simple Modal 来呈现一个 div,同时我的 Rails 应用程序正在处理创建时的一些数据。我希望该页面在显示页面加载时消失。现在,我在单击提交时呈现模式视图,但之后似乎冻结了。关于如何在处理数据时显示活动指示器有什么建议吗?
I want to use Simple Modal to present a div while my rails app is processing some data on create. I want the page to then disappear when the show page should load. Right now, I'm presenting the modal view on clicking submit, but it seems to freeze after that. Any suggestions on how to show an activity indicator while processing data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您说“冻结”时,这是否意味着您没有从 XHR 请求中得到响应?
无论您使用的是自制 xhr 设置还是 jquery 之类的东西,您都应该能够检测成功/失败并相应地处理您的模式状态。
旁注:这是一个方便的实用程序,用于向模态添加漂亮的旋转动画 http://fgnass.github。 com/spin.js/。
When you say 'freeze' does that mean you're not getting a response from your XHR request?
Whether you're using a homebrew xhr setup or something like jquery you should be able to detect success/failure and handle your modal status accordingly.
Side Note: This is handy utility for adding a nice spinner animation to your modal http://fgnass.github.com/spin.js/.