我正在尝试将表单数据序列化为 JSON 对象,但是当我需要创建购物车对象时遇到了困难。
获取表单中的所有数据后,我想要实现的是一个像下面的代码片段一样的对象。我怎样才能做到这一点?
所以你可以在这里查看和测试完整的代码http://jsbin.com/OyAzAZA/3/
{
"client_id": 1,
"carts": [
{
"cart_id": 1,
"items": [
{
"code": "01",
"descrption": "text 1"
},
{
"code": "02",
"descrption": "text 2"
}
]
},
{
"cart_id": 2,
"items": [
{
"code": "03",
"descrption": "text 3"
},
{
"code": "04",
"descrption": "text 4"
}
]
}
]
}