我有这个 JSON:
{
status: "ok",
posts: [ {
id: 1362,
type: "ser",
slug: "av-ss-xiii-3",
fields: {
price: [ "550" ],
sale: [ "rent" ]
}
} ]
}
我正在用 mustache 以这种方式解析它,但正如你所看到的......字段不是对象数组,它是一个具有两个属性和数组值的对象......
{{#posts}}
<h1>{{type}}</h1>
{{#fields}}
<p> {{price}}:{{value}}</p>
{{/fields}}
{{/posts}}
我想我在解析过程中会出错,因为它对价格值不起作用。