我想问一下如何使用JavaScript将我的JSON数据转换为数组
JSON数据
[{"DestinationNo":"84665905","SubscriberNumber":"91138859"},{"DestinationNo":"60165043100","SubscriberNumber":"91138859"}]
到阵列
[[‘84665905‘,’91138859’],
[‘60165043100’,’91138859’]]
我试着这样做,但它没有工作How to convert JSON object to JavaScript array?
1条答案
按热度按时间xqk2d5yq1#
我想问一下如何使用JavaScript将我的JSON数据转换为数组
JSON data [{“DestinationNo”:“84665905”,“SubscriberNumber”:“91138859”},{“DestinationNo”:“60165043100”,“SubscriberNumber”:“91138859”}]
到数组[['84665905','91138859'],['60165043100','91138859']]