我正在尝试为无逻辑模板运行 mustache C 库的示例应用程序。我正在使用 json-c 库来解析 JSON。
mustache C 库,
mustache 示例(此链接上的第一个示例)
A typical Mustache template:
Hello {{name}}
You have just won {{value}} dollars!
{{#in_ca}}
Well, {{taxed_value}} dollars, after taxes.
{{/in_ca}}
Given the following hash:
{
"name": "Chris",
"value": 10000,
"taxed_value": 10000 - (10000 * 0.4),
"in_ca": true
}
我已经尝试将 mustache C 库安装到本地机器,同时提供以下 JSON 作为哈希将得到如下解析错误。
root@userx:/home/userx/mustach# ./mustach json template
Can't load json file json
reason: json_tokener_parse_ex failed: object value separator ',' expected
另外,我已经尝试过演示链接并得到相同的解析错误。测试/演示
Invalid JSON: {
"name": "Chris",
"value": 10000,
"taxed_value": 10000 - (10000 * 0.4),
"in_ca": true
}
请你帮我知道,如何解决这个错误?