gpt4 book ai didi

c++ - 如何将 QVariant 转换为 QJsonValue?

转载 作者:行者123 更新时间:2023-11-30 03:27:01 36 4
gpt4 key购买 nike

如何将QVariant转换为QJsonValue?我知道 QVariant 提供了 toJsonValue 函数,但它没有按预期执行。

例如:

qDebug()<<QVariant(1.0).toJsonValue();
qDebug()<<QVariant("test").toJsonValue();

两者都返回:

QJsonValue(null)
QJsonValue(null)

期望输出:

QJsonValue(double, 1)
QJsonValue(string, "test")

最佳答案

你也可以使用这个静态函数:

QJsonValue::fromVariant( myVariant )

检查 this link了解更多信息。

关于c++ - 如何将 QVariant 转换为 QJsonValue?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47709926/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com