我尝试了很多时间将 perl 对象转换为 JSON 字符串。但我还是找不到。我使用了 JSYNC。但我看到它有一些问题。然后我在 perl 中使用 JSON 模块。这是我的代码。
my $accountData = AccountsData ->new();
$accountData->userAccountsDetail(@userAccData);
$accountData->creditCardDetail(@userCrData);
my $json = to_json($accountData,{allow_blessed=>1,convert_blessed=>1});
print $json."\n";
当我运行它打印的代码时null
。我做错了什么吗?