如何使用javascript对API返回的JSON中的数据进行分类。
API提供的数据:
{
"referenceNumber":"55f97f3be4b0503165e858c5",
"phoneNumber":"7877599999",
"amount":15.00,
"transStatus":"COMPLETED",
"responseStatus":{
"status":"SUCCESS",
"statusDescription":"The request is successful."
}
}
我想通过javascript从phoneNumber
收到号码。
答案 0 :(得分:0)
var data = JSON.parse(apiResponse);
var phoneNumber = data.phoneNumber;