自动增量月自动导轨

时间:2014-11-21 12:50:10

标签: ruby-on-rails ruby iteration

如果声明为true,我想做current_month + 1.month 例如

if condition #i mean true
 @month = Jan + 1.month #Feb
else
 current_month #Jan
end

从2月1月1月开始的第一次迭代......等等

我的问题是如何保存更新的@month供以后使用并自动增加

简而言之

我想写一个方法,它接受参数,如果它的真实更新月份到下个月自动

1 个答案:

答案 0 :(得分:0)

假设您Date中存储了@month

@month += 1.month if condition

如果将condition评估为true,则添加一个月。否则请保持原样@month

这就是你想要的吗?