提问人:potatoProgrammer 提问时间:9/7/2023 最后编辑:Peter MortensenpotatoProgrammer 更新时间:9/7/2023 访问量:39
Velocity 模板字符串串联
Velocity template string concatenation
问:
这是我第一次使用 VTL,我试图遵循有关字符串连接的文档,但我无法让它工作。场景如下:
我有一个有效载荷:
{
"name":{
"firstname": "John",
"lastname": "Doe"
}
}
我得到的结果是:
{
"fullname": "John"-"Doe"
}
另外,如何在 Velocity 中获取当前日期 (UTC)?
在我的 Velocity 模板中,我做了:
#set($firstname= $root.name.firstname)
#set($lastname= $root.name.lastname)
#set($fullname= ${firstname}-${lastname})
{
$h.outputFormat("json")
$h.opt("fullname", $fullname, true)
}
我想要的结果是:
{
"fullname": "John-Doe"
}
答: 暂无答案
评论