如果声明为true,我想做current_month + 1.month
例如
if condition #i mean true
@month = Jan + 1.month #Feb
else
current_month #Jan
end
从2月1月1月开始的第一次迭代......等等
我的问题是如何保存更新的@month供以后使用并自动增加
简而言之
我想写一个方法,它接受参数,如果它的真实更新月份到下个月自动
答案 0 :(得分:0)
假设您Date
中存储了@month
:
@month += 1.month if condition
如果将condition
评估为true
,则添加一个月。否则请保持原样@month
。
这就是你想要的吗?