如何使用Qt

时间:2016-01-20 13:32:28

标签: c++ json qt qwebview qjsonobject

我正在使用QWebChannel在Qt中实现一个HTML包装器,并且我很容易发送字符串,但是,我想发送一个QJsonObject,而不是像#34; {a:1,b:2}这样的json字符串& #34;但是一个Qt QJsonObject。可能吗?

官方文件说

  

"不需要手动传递消息和序列化数据,"    http://doc.qt.io/qt-5/qwebchannel.html

如何使用JsonObject而不是字符串发出信号?

这是我的QWebChannel连接类

class Mapa : public QObject{
    Q_OBJECT

    public:
        explicit Mapa();
        displayMessage(const QString &message);
    signals:
        updateText(const QString &text); // success :sends text
        updateJson( const QJsonObject   &json); // fail: sends null
        updateJsond(const QJsonDocument &jsondoc);// fail: sends null
    }
 }

这是我的主要代码

Mapa map;
// setup the channel
QWebChannel channel;
QObject::connect(&clientWrapper, &WebSocketClientWrapper::clientConnected, &channel, &QWebChannel::connectTo);

// setup the dialog and publish it to the QWebChannel
channel.registerObject(QStringLiteral("map"), &map);

map.updateText("text");// sends "text" string

QJsonObject j;
j["Altitude"]  = 10;

map.updateJson(j); // sends "null" string
QJsonDocument doc(j);
map.updateJsond(doc); // sends "null" string

1 个答案:

答案 0 :(得分:4)

您可以将QJson个对象发送到您的Javascript代码

,而不是使用QVariant系列对象
  • QJsonObject = QVariantMap
  • QJsonArray = QVariantList

您可以轻松地使用.toVariantMap().toVariantList()方法从JSON对象转换对象。