You're looking for a hash slice which in your case would look like this:
my ($field1,$field2,$field3) = @{$my_hash}{qw(field1 field2 field3)};
or like this:
my ($field1,$field2,$field3) = @$my_hash{qw(field1 field2 field3)};
If we simplify things so that you're working with a straight hash rather than hash-ref, we can remove some of the noise and the syntax will look a bit clearer:
my %my_hash = ( field1=>'val1', field2=>'val2', field3=>'val3' );
my ($field1, $field2, $field3) = @my_hash{ qw(field1 field2 field3) };
# we want an array/list ---------^ ^ ^
# but my_hash is a hash -----------------/ |
# and we want these keys (in this order) ---/
# so we use a qw()-array
Then we can get to your $my_hash
hash-ref version by replacing the hash with a hash-ref in the usual way.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…