目标:打印当前年份“2017”和次年“2018”。 我现在可以使用下面打印当前年份,但不能在下一年打印。
"Current_Year": "<? now().reformatDateTime('yyyy') ?>"
"Next_Year": "<? now().reformatDateTime('yyyy+1') ?>"
答案 0 :(得分:3)
您必须将其转换为Integer,然后将其加1。
"Next Year":" <?now().reformatDateTime('yyyy').toInt()+1 ?>"
现在你将获得2018年结果。