我怎样才能在 jsonnet 中得到这样的东西?
{
if 1 == 1 then
store: true
}
使用 jsonnet 运行时出现以下错误:
STATIC ERROR: a.jsonnet:2:9-11: unexpected: if while parsing field definition
我想生成一个这样的json,只是作为一个例子,但是在评估一些条件时:
{
"store": true
}
我怎样才能在 jsonnet 中得到这样的东西?
{
if 1 == 1 then
store: true
}
使用 jsonnet 运行时出现以下错误:
STATIC ERROR: a.jsonnet:2:9-11: unexpected: if while parsing field definition
我想生成一个这样的json,只是作为一个例子,但是在评估一些条件时:
{
"store": true
}