0

我正在尝试遍历我的日程表并使用“日期时间:> = Time.now”获取一条记录,以显示下一场比赛的当前球队。

这是我的团队模型:

class Team < ActiveRecord::Base
  attr_accessible :city, :conf, :div, :full_name, :name, :short_name

  has_many :fans
  has_many :away_schedules, class_name: 'Schedule', foreign_key: :away_team_id
  has_many :home_schedules, class_name: 'Schedule', foreign_key: :home_team_id

 def schedules
  (away_schedules + home_schedules).sort_by(&:id)
  end
end

这是我的计划模型:

class Schedule < ActiveRecord::Base  
  attr_accessible :away_team_id, :datetime, :home_team_id, :season, :week

  belongs_to :away_team, class_name: 'Team'
  belongs_to :home_team, class_name: 'Team'
end

我有一个 games_helper.rb

module GamesHelper
  def current_game
   @current_game = current_fan.team.schedules
  end
end

我有部分 _scoreboard.html.erb

<% current_game.each do |game| %>
  <% if game.datetime.to_s >= Time.now.to_s %>
  <% return current_game = game.datetime.to_s(:custom),
  game.away_team.short_name, " @ ", game.home_team.short_name %>
  <% end %>
<% end %>

这似乎可行,但使用 return 将数组放在结果周围的括号中:

["Sun, Sep 15th, at 4:25 PM", "DEN", " @ ", "NYG"]

希望它显示:

Sun, Sep 15th, at 4:25 PM, DEN @ NYG

我不确定我是否以正确的方式解决这个问题。

4

3 回答 3

2

假设一个名为“Game”的 ActiveRecord 模型带有一个名为“game_date”的字段:

Game.game_date.where('game_date > ?', Time.now).order('game_date').first

这将确保您的数据库进行排序和搜索,并且只返回一条记录。如果你不喜欢占位符语法,squeel gem 可以使它看起来更加红润,尽管这对于这个例子来说可能是矫枉过正。

更新(基于对问题的更改)

我认为您想将大量 ruby​​ 代码从部分移动到您的助手。在您的助手中,添加此方法:

def current_game_scoreboard(game)
  if game.datetime >= Time.now
    current_game = game.datetime.to_s(:custom),
      game.away_team.short_name, " @ ", game.home_team.short_name
    return current_game.join('')
  end
end

在您的部分中,只需将具有上述代码的循环体替换为:

current_game_scoreboard(game)

您可以通过将集合传递给部分记分牌并使用 Rails 的部分魔术来进行循环迭代来进一步改进这一点,但这将使您朝着正确的方向前进。

于 2013-09-06T20:36:35.080 回答
0

你可以在红宝石中做到这一点: -

require 'date'

dtar = [ "2013-8-15 13:00:00", "2013-9-15 13:00:00","2013-12-15 13:00:00", "2013-12-5 13:00:00"]
dtar.map{|d| Date.parse d}.find{|d| d > Date.today}
# => #<Date: 2013-09-15 ((2456551j,0s,0n),+0s,2299161j)>
于 2013-09-06T19:37:06.967 回答
0

添加调用next_gameTeam模型的方法

class Team < ActiveRecord::Base
  def next_game(reload=false)
    @next_game = nil if reload
    @next_game ||= schedules.where('game_date > ?', Time.now).order('game_date').first
  end

  # change the schedules method implementation so that you can perform all the work in db
  def schedules
    Schedule.where("away_team_id = ? OR home_team_id = ?", id, id)
  end
end

添加助手以显示游戏信息

module GamesHelper
  def game_info g
    "#{g.datetime.to_s(:custom)}, #{g.away_team.short_name} @ #{g.home_team.short_name}"
  end
end

现在在你看来:

<% if (game = current_fan.team.next_game).present? %>
  <%= game_info(game)%>
<% end %>
于 2013-09-08T01:08:32.127 回答