微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ruby-on-rails – Rails 4关系#全部弃用

在我的应用程序中,我创建了一个最近的帖子功能.
@recentposts = Post.all(:order => 'created_at DESC',:limit => 5)

这个变量有些麻烦.当我运行测试我有以下错误

DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation,you can call #load (e.g. Post.where(published: true).load). If you want to get an array of records from a relation,you can call #to_a (e.g. Post.where(published: true).to_a). (called from show at /home/mateusz/rails4/Bloggers/app/controllers/users_controller.rb:18)

我是Google上的seraching解决方案,但我没有找到它

解决方法

只写:
@recentposts = Post.order('created_at DESC').limit(5)

to_a没有明确的必要,因为数据在需要时被延迟加载.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐