vs c++ qt 叫请求的json 输出到输出终端

1 接收数据

std::string response = "";

//设置数据接收函数
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, Utils::req_reply);
// 设置写入数据的缓冲区
curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void*)&response);

2 打印 数据类型

qDebug() << "data:" << typeid(response).name();

3 打印指定数据

// 使用 nlohmann/json 命名空间
#include
using json = nlohmann::json;

try {
    json j = json::parse(data);
    // 使用 qDebug() 输出 JSON 字符串
    qDebug().noquote() << QString::fromStdString(j.dump()); //std::string jsonString = j.dump();

    // 提取字段
    std::string code = j["code"];
    std::string msg = j["msg"];
    json data = j["data"]; 
}
catch (json::parse_error& e) {
    std::cerr << "JSON parse error: " << e.what() << '\n';
}
            

你可能感兴趣的:(c++,qt,c++,json,开发语言)