我有一个没有数组名称的 json 数组。如何解析没有名称的 JSON 数组?这是我的数组
[
{
"id": "13",
"email": "jcheck1@gmail.com",
"first_name": "jcheck",
"last_name": "check",
"country": "india",
"city": "tvm",
"zip_code": "695581",
"phone": "4712584632",
"status": "Success"
}
]
我尝试将其转换为 JSON 对象,并尝试直接从数组中获取字符串。但我两次都有例外。