hash を配列に格納する場合は \ をつける
my $self = {
docfields => \%docfields,
};
取り出す際
my %docfields = %{$self->{docfields}};
Just another WordPress site
hash を配列に格納する場合は \ をつける
my $self = {
docfields => \%docfields,
};
取り出す際
my %docfields = %{$self->{docfields}};