How do I pull the string array from this json object?

后端 未结 4 1718
日久生厌
日久生厌 2020-12-15 10:04

I am trying to get a list of available numbers from the following json object, using the class from org.json

    {
        \"response\":true,
           


        
4条回答
  •  我在风中等你
    2020-12-15 10:31

    Assuming that you are trying to get it in a javascript block, Try something like this

    var arrNumber = jsonData.numbers;

提交回复
热议问题