在Watson的JSON编辑器中执行简单的日期计算时遇到了一些困难。我有一个已知的日期日期:2018年7月27日,我需要做的是基于当前日期计算并输出以月和日为单位的年龄。我试图根据“表达式语言方法”中给出的示例来弄清楚这一点,但是我一直没有成功。
我需要做的是将(new Date(2019,2,13))。getTime()替换为today(),以便每当有人要求输入日期时可以实时计算月份的年龄。年龄,我尝试用Today()替换它,但是会导致错误...
{
"context": {
"days": "<? (((new Date(2019, 2, 13)).getTime() - (new Date(2018, 7, 29)).getTime()) / (1000 * 60 * 60 * 24)) / 30 ?>"
},
"output": {
"generic": [
{
"values": [
{
"text": "Abby is <? $days ?> months old."
},
{
"text": "The wonderful and beautiful Abbygale is <? $days ?>months old."
},
{
"text": "The incredibly smart and savvy Abby is <? $days ?> months old."
}
],
"response_type": "text",
"selection_policy": "sequential"
}
]
}
}
答案 0 :(得分:0)
为了更精确,将代码天数更改为数月。
请注意,SpEL使用Java Date,因此2018年7月27日为new Date(118,6,27)
。
因此更改后的解决方案将是:
{
"context": {
"months": "<? (new Date().getYear() * 12 + new Date().getMonth()) - (new Date(118,6,27).getYear() * 12 + new Date(118,6,27).getMonth()) + 1 ?>"
},
"output": {
"generic": [
{
"values": [
{
"text": "Abby is <? $months ?> months old."
},
{
"text": "The wonderful and beautiful Abbygale is <? $months ?>months old."
},
{
"text": "The incredibly smart and savvy Abby is <? $months ?> months old."
}
],
"response_type": "text",
"selection_policy": "sequential"
}
]
}
}