我需要在我的Rails应用程序中运行以下代码:
ActiveSupport::TimeZone["Central Time (US & Canada)"].parse(game.date).utc.to_date.strftime("%_m/%d")[1..-1]
哪个游戏是@ games.each do | game |
但这不起作用,我得到错误,TypeError:没有将ActiveSupport :: TimeWithZone隐式转换为String.
但是,我可以运行:
ActiveSupport::TimeZone["Central Time (US & Canada)"].parse("2014-04-11 12am").utc.to_date.strftime("%_m/%d")[1..-1]
返回“4/11”
如何使用上面的代码与`game.date’而不是硬编码的字符串?
编辑
游戏对象如下所示(来自db / seeds.rb):
Game.create(id: 9,date: "2014-04-11 12am",time: "705PM",opponent: "Jacksonville",away: false,event: "friday night fireworks")
编辑2
在我做game.date的rails控制台中,它返回:
Fri,11 Apr 2014 00:00:00 UTC +00:00
所以它似乎不是一个字符串.
解决方法
要使你想要做的工作,你需要将日期转换为带有to_s的字符串:
ActiveSupport::TimeZone["Central Time (US & Canada)"].parse(game.date.to_s).utc.to_date.strftime("%_m/%d")[1..-1]
但是,您应该考虑这是否真的是您想要做的.现在看来,这段代码是一个日期,将其转换为字符串,解析字符串以返回日期,然后再将其转换为字符串.你确定你不能用这样的东西吗?
game.date.strftime(%_m/%d")[1..-1]