从json解析数组

db2dz4w8  于 2022-12-24  发布在  其他
关注(0)|答案(1)|浏览(167)

我有一个 AJAX 函数:

$.ajax({
                                  url: 'get_days.php',
                                  type: 'post',
                                  dataType:"json",
                                  data: { firstdate: firstdate,
                                        seconddate: seconddate,
                                        frompartofday: frompartofday,
                                        topartofday: topartofday},
                                  success: function (response) {
                                    if(response.status!='wrong'){
                                        
                                        console.log(response.result1);}}});

在服务器端,我将响应设置为

$response['result1']=$currentRange;

其中$currentRange是一个数组。当使用

console.log(response.result1);

控制台中的输出为

['12-19-2022', '12-20-2022']
0:"12-19-2022"
1:"12-20-2022"
length:2
[[Prototype]]:Array(0)

请帮助我访问这个数组的元素由json返回的数组索引。

lpwwtiir

lpwwtiir1#

您可以使用方括号表示法访问数组的元素

someArray[i]

其中someArray是数组(在您的示例中为result1),i是数组的索引(数字),从索引0开始。

result1[0] // gets the first element of the array in your response

相关问题