Thread not a hash reference bei JSON decode (4 answers)
Opened by perl_gast at 2015-02-18 00:35

Gast perl_gast
 2015-02-18 00:35
#179719 #179719
Hallo,

nach vielen Versuchen komme ich nicht weiter
Code: (dl )
1
2
3
4
5
...  
my $decoded = decode_json( $response->content );
if ($type eq "local") {
print Dumper(\%$decoded); #only with: use Data::Dumper;
my $value = $decoded->{data}->{tuples}[0][1]; # < Hier kommt der Fehler: not a hash refence

Dumper output:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
$VAR1 = {
'version' => '1',
'data' => [
{
'protocol' => 'x',
'tuples' => [
[
'1424006943281',
'15098'
]
],
'last' => '1424006943281',
'interval' => 30,
'uuid' => '180'
}
],
'generator' => 'a'
};

Wie kann ich $value mit 15098 befüllen?
Last edited: 2015-02-18 00:38:02 +0100 (CET)

View full thread not a hash reference bei JSON decode