Ruby on Rails,从另一个实例变量的属性创建实例变量

发布于 2024-11-16 13:51:21 字数 261 浏览 2 评论 0原文

我认为这是一个简单的问题,但我似乎无法集中精力来解决它。我想从另一个实例变量的属性创建一个实例变量。 例如:

@posts = Post.find(:all, :conditions => ['day > ?', Date.today], :order => 'day')

我想获取另一个实例变量,其中包含 @posts 中的所有日期。有没有一种方法可以快速获取它而无需创建助手/函数? 谢谢!

I think this is an easy question but I can't seem to wrap my head around it to solve it. I want to create an instance variable from a property of another instance variable.
For example:

@posts = Post.find(:all, :conditions => ['day > ?', Date.today], :order => 'day')

I want to get another instance variable that contains all of the dates from the @posts. Is there a way of quickly getting it without having to create a helper/function?
Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

过气美图社 2024-11-23 13:51:21
@posts.map(&:day)

简写

@posts.map do |post|
  post.day
end

这是The result is an array of the value of every post.day 的

@posts.map(&:day)

which is a shorthand for

@posts.map do |post|
  post.day
end

The result is an array of the value of each post.day

萌能量女王 2024-11-23 13:51:21

韦恩拥有的是合适的。我更喜欢收集而不是地图,但它们是等效的。

@dates = @posts.collect{|post| post.day}.uniq

请注意,最后的 uniq 将为您提供唯一的值。

What Wayne has is a appropriate. I prefer collect instead of map, but they are equivalent.

@dates = @posts.collect{|post| post.day}.uniq

Notice, uniq at the end will give you the unique values.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文