ZBLOG

上述代码编译错误:[build] /root/Desktop/615/svr/ajsqlite3.cpp:1945:46: error: ‘const key_type’ {aka ‘const class std::__cxx11::basic_string’} has no member named ‘asString’ [build] 1945 | emitter

非常抱歉,我之前的回答中没有注意到您使用的是 nlohmann::json 库而不是 jsoncpp 库。nlohmann::json 不需要像 jsoncpp 那样进行转换操作。

以下是更新后的函数示例,适用于 nlohmann::json:

void jsonToYaml(const nlohmann::json& jsonData, YAML::Emitter& emitter)
{
    if (jsonData.is_object())
    {
        emitter << YAML::BeginMap;
        for (auto it = jsonData.begin(); it != jsonData.end(); ++it)
        {
            emitter << YAML::Key << it.key();
            if(it.value().is_object() || it.value().is_array())
                jsonToYaml(it.value(), emitter);
            else
                emitter << YAML::Value << it.value();
        }
        emitter << YAML::EndMap;
    }
    else if (jsonData.is_array())
    {
        emitter << YAML::BeginSeq;
        for (const auto& item : jsonData)
        {
            jsonToYaml(item, emitter);
        }
        emitter << YAML::EndSeq;
    }
    else
    {
        // Scalar value
        emitter << jsonData.get<nlohmann::json::string_t>();
    }
}

通过这些修改,代码应该能够正确编译并将 JSON 转换为 YAML 格式。希望这次能够帮到你!如果还有其他问题,请随时提问。


内容由零声教学AI助手提供,问题来源于学员提问

本站部分文章来源于网络,版权归原作者所有,如有侵权请联系站长删除。
转载请注明出处:https://golang.0voice.com/?id=17251

分享:
扫描分享到社交APP
上一篇
下一篇
发表列表
游客 游客
此处应有掌声~
评论列表

还没有评论,快来说点什么吧~

联系我们

在线咨询: 点击这里给我发消息

微信号:3007537140

上班时间: 10:30-22:30

关注我们
x

注册

已经有帐号?