在rails上执行控制器方法中的内容后如何刷新网页?
我正在 Rails 2.3.8 上开发项目,我在一页上使用下拉菜单并观察它。因为它将转到控制器方法,并且我需要在该特定控制器方法上执行操作后重新加载。我怎样才能在轨道上做到这一点?
I'm developing project on rails 2.3.8 and I using drop down menu on one page and I observe it. In that it will go to controller method and I need to reload after executing things on that particular controller method. How can I do this on rails ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将控制器中操作的末尾
redirect_to
放置到控制器/操作的相同路径。Try putting at the end of your action in your controller
redirect_to
to the same path of the controller/ action.