这是我第一次使用 VTL,所以如果我的代码很愚蠢,请更正我的代码。
我想要达到的目标
{
"cities": ["jaipur", "mumbai", "delhi", "sheros", "jalandhar", "bengaluru"]
}
Graphql 架构:
type Query{
getCitiesForGroups: String
}
默认响应模板:
#if($ctx.error)
$utils.error($ctx.error.message, $ctx.error.type)
#end
$utils.toJson($utils.rds.toJsonObject($ctx.result)[0])
使用默认响应模板,我得到的结果
{ "data": { "getCitiesForGroups": [ "{groupcity=jaipur}", "{groupcity=mumbai}", "{groupcity=delhi}", "{groupcity=sheros}", "{groupcity=jalandhar}", "{groupcity=bengaluru}" ] } }
我的请求模板
{
"version": "2018-05-29",
"statements": [
"select DISTINCT LOWER(city) as city from public.Groups"
]
}
为了获得所需的输出,我更改了响应模板,因为我想循环从数据库获得的响应,并使用AWS 解析器映射文档中{city=}
给出的子字符串方法从字符串中删除,这就是我面临的地方问题。
我的回复模板
#if($ctx.error)
$utils.error($ctx.error.message, $ctx.error.type)
#end
#set ($rawListOfCities = $utils.rds.toJsonObject($ctx.result)[0])
#set ($sanitisedListOfCities = [])
#foreach( $city in $rawListOfCities )
#set ($equalToIndex = $city.indexOf("="))
#set ($equalToIndex = $equalToIndex + 1)
#set ($curlyLastIndex = $city.lastIndexOf("}"))
#set ($tempCity = $city.substring($equalToIndex, $curlyLastIndex))
## #set ($tempCity = $city)
$util.qr($sanitisedListOfCities.add($tempCity))
#end
$util.toJson($sanitisedListOfCities)
我得到的回应:
{
"data": {
"getCitiesForGroups": "[null, null, null, null, null, null]"
}
}
但是,当我使用该行#set ($tempCity = $city)
并注释掉它上面的行时,我得到以下响应:
{
"data": {
"getCitiesForGroups": "[{city=jaipur}, {city=mumbai}, {city=delhi}, {city=sheros}, {city=jalandhar}, {city=bengaluru}]"
}
}
这意味着$city
具有 value {city=jaipur}
,因此我想对其进行清理并将其添加($sanitisedListOfCities)
并作为响应返回。
但我得到null
的结果是子字符串方法。
那么如何清理来自 DB 的响应并返回它呢?