Perl / DBI 查询不保留 JSON 输出的整数值

Perl / DBI query doesn't preserve integer values for JSON output

我无法将此 Perl 代码设为 return table 中整数的真整数值。 MySQL table 列已正确指定为整数,但此处的 JSON 输出将所有查询值括在引号中。我怎样才能正确地保留指定的数据类型(尤其是整数和布尔值)?

use strict;
use warnings;
use DBI;
use JSON;

my $sth = "SELECT id, name, age FROM table";

my $data = $dbh->selectall_arrayref($sth, {Slice => {}});

my $response = encode_json($data);
print $response;

## outputs: {"id":"1","name":"Joe Blodge","age":"42"}

我在这里做错了什么?我怎样才能输出格式正确的 JSON:

{"id":1,"name":"Joe Blodge","age":42}

DBD::mysql returns 所有结果都是字符串(参见 https://github.com/perl5-dbi/DBD-mysql/issues/253). Normally Perl doesn't care, encoding to JSON is one of the few times when it matters. You can either use Cpanel::JSON::XS::Type 为您的 JSON 结构提供类型声明:

use Cpanel::JSON::XS;
use Cpanel::JSON::XS::Type;

my $response = encode_json($data, {id => JSON_TYPE_INT, name => JSON_TYPE_STRING, age => JSON_TYPE_INT});

或者您可以在 JSON 编码之前遍历并数值化适当的元素。

$data->{$_} += 0 for qw(id age);

可以检查每个返回列的类型(如 MySQL 所示),如果您使用语句句柄构造和执行查询,则该类型将作为数组在 $sth->{TYPE},但这相当复杂,可能不可靠。