gpt4 book ai didi

linux - Perl - 伪哈希已被弃用

转载 作者:太空宇宙 更新时间:2023-11-04 03:43:41 25 4
gpt4 key购买 nike

我正在尝试通过 perl 获取 d 请求。但我遇到了以下错误:

#!/usr/bin/perl
use lib "/usr/packages/perl/perl-5.16.3/lib/5.16.3";
use strict;
use warnings;
use LWP::UserAgent;
use JSON;
use MIME::Base64;

my $url = 'https://example.com:8443/cli/agentCLI';
my $credentials = encode_base64('username:password');

my $ua = LWP::UserAgent->new(ssl_opts =>{ verify_hostname => 0});
my $response = $ua->get($url, 'Authorization' =>" Basic $credentials");

die 'http status: ' . $response->code . ' ' . $response->message
unless ($response->is_success);

my $json_obj = JSON->new->utf8->decode($response->content);

# the number of rows returned will be in the 'rowCount' propery
print $json_obj->{rowCount} . " rows:n";

# and the rows array will be in the 'rows' property.
foreach my $row(@{$json_obj->{rows}}){
#Results from this particular query have a "Key" and a "Value"
print $row->{Key} . ":" . $row->{Value} . "n";
}

输出(错误):

agent.pl 第 21 行已弃用伪哈希。agent.pl 第 21 行没有这样的伪哈希字段“rowCount”。

谢谢,卡莱亚拉桑

最佳答案

参见:

http://perldoc.perl.org/5.8.8/perlref.html#Pseudo-hashes%3A-Using-an-array-as-a-hash

在最新版本中:http://perldoc.perl.org/perlref.html#Pseudo-hashes%3a-Using-an-array-as-a-hash

这已被弃用。我可以想象(但没有你的 JSON 就无法判断)你的 JSON 顶层是一个数组。

Data::Dumper 可以帮助您了解实际的数据结构是什么。

关于linux - Perl - 伪哈希已被弃用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28930170/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com