Flash 通知和 Active Record
我的代码可以像它应该的那样工作,但我不知道为什么它可以工作...
我在此处发布了代码,但不明白为什么在更新期间,如果仅对数据库进行查询,@person 的新数据就可用,所以flash通知如何获取新值?
感谢您的帮助
I have code thats working like it should but I have no idea why it's working...
I posted the code here and don't understand why during the update the new data for @person is available if only query is made to the DB so how can the flash notice get the new values?
Thanks for the help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您调用 @person.update_attributes(params[:person]) 时,您实际上更新了 @person 对象,这就是您之后获得新名称的原因。
希望有帮助!
When you call @person.update_attributes(params[:person]) your actually updating the @person object which is why you get the new name thereafter.
Hope that helps!