假设我有一个像这样相当嵌套的 JS 对象,我需要对其进行 JSON 编码:
var foo = {
"totA": -1,
"totB": -1,
"totC": "13,052.00",
"totHours": 154,
"groups": [
{"id": 1,
"name": "Name A",
"billingCodes": [
{"bc": "25", "type": "hours", "hours": "5", "amount": "$25.00"}
]}
]
};
如果我使用本机浏览器JSON.stringify
(在 Chrome、Firefox、IE9/10 中测试)对其进行 JSON 编码,我会得到一个如下所示的 JSON 字符串(这是我所期望的):
{
"totA": -1,
"totB": -1,
"totC": "13,052.00",
"totHours": 154,
"groups": [
{
"id": 1,
"name": "Name A",
"billingCodes": [
{
"bc": "25",
"type": "hours",
"hours": "5",
"amount": "$25.00"
}
]
}
]
}
如果我尝试在使用PrototypeJS或json2.js的页面上做同样的事情,就会出现奇怪的情况。
在这种情况下,JSON.stringify
在同一个对象上返回以下 JSON:
ProtypeJS JSON.stringify JSFiddle 示例
{
"totA": -1,
"totB": -1,
"totC": "13,052.00",
"totHours": 154,
"groups": "[{\"id\": 1, \"name\": \"Name A\", \"billingCodes\": [{\"bc\": \"25\", \"type\": \"hours\", \"hours\": \"5\", \"amount\": \"$25.00\"}]}]"
}
显然,上面是一个问题,因为它不会 JSON 解码到最初传递给JSON.stringify
.
谁能详细说明发生了什么以及为什么会有这种差异?
我错过了什么?