这有效:(更新:但不是我想的那样!它实际上设置了 b = "c, d: e")
a: [
{ b: c, d: e
}
]
这有效:
a: [
{ "b": "c", "d": "e" }
]
但这不起作用。hjson 定义不允许在行尾使用右大括号怎么办?
a: [
{ b: c, d: e }
]
Found ']' where a key name was expected
(check your syntax or use quotes if the key name
includes {}[],: or whitespace): line 3 column 1 (char 23)