Iterating through an array of hashes

纵饮孤独 提交于 2019-12-02 07:40:27

Your $out is a reference to a single-element hash which has an array reference for the value of its data element

It's best to extract the reference into a separate variable so that you can access the contents more simply. Suppose you wrote

my $data = $out->{data};

Thereafter, the array is accessible as @$data, the number of elements it contains is scalar @$data, and the indices are 0 .. $#$data. You can access each element of the array with $data->[0], $data->[1] etc.

Your code would become

my $out  = decode_json $client->responseContent;
my $data = $out->{data};

for my $i ( 0 .. $#$data ) {
    my $item = $data->[$i];
    my $b4 = $item->{b4};
    print "$b4\n";
}

But note that, unless you need the array index for other purposes, you are probably better off iterating over the array elements themselves rather than its indices. This code would do the same thing

my $out  = decode_json $client->responseContent;
my $data = $out->{data};

for my $item ( @$data ) {
    my $b4 = $item->{b4};
    print "$b4\n";
}

Or even just

print "$_->{b4}\n" for @$data;

if you don't need to do anything else within your loop

Here's how to iterate over the array

for my $cur (@{$out->{data}})
{
    ...
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!