【发布时间】:2020-05-06 20:40:53
【问题描述】:
这是我的 json 数据,我想删除外部数组。
[
[
{
"name":"name",
"zip_code":"50700",
"state":"state",
"country":"country"
}
]
]
我想要这样
[
{
"name":"name",
"zip_code":"50700",
"state":"state",
"country":"country"
}
]
【问题讨论】:
-
那么解析它并得到
[0]th 元素?
标签: javascript jquery json ajax api