Chinaunix首页 | 论坛 | 博客
  • 博客访问: 148265
  • 博文数量: 21
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 134
  • 用 户 组: 普通用户
  • 注册时间: 2016-03-10 11:08
文章分类

全部博文(21)

文章存档

2017年(6)

2016年(15)

我的朋友

分类: LINUX

2017-03-28 10:56:48

原文地址:Qt 解析JSon 作者:zimang

First time i find out this it took a while. But actually there is no need any Additional code except QT itself, unless you want gain more performance then QT standard library gives. So if you want to parse JSON object first you have to include QT script engine.

 
#include
 

Let say PHP returns something like this.

 
json_encode(('result' => (1,2,3)));
 

So C++ code looks like:

 
QByteArray result;
result = QhttpClient->readAll();
 
QScriptValue sc;
QScriptEngine engine;
sc = engine.evaluate(QString(result)); // In new versions it may need to look like engine.evaluate("(" + QString(result) + ")");
 
if (sc.property("result").isArray())
{
 
QStringList items;
qScriptValueToSequence(sc.property("result"), items);
 
foreach (QString str, items) {
qDebug("value %s",str.toStdString().c_str());
}
 
}
 

In this example this code writes something like: value 1 value 2 value 3 values comes from generated PHP script. Let say php now gives us back something like:

 
json_encode(('error' => false));
 

In this case just more simple syntax.

 
if (sc.property("error").toBoolean() == true)
qDebug("Error detected");
else
qDebug("All ok");
 

And finally most complex example witch should be ready to use for any purpose. Let say PHP gives something like this:

 
json_encode(
('result' =>

(
('id' => '1' ,'date' => '487847','nick' => 'Remigiijus'),
('id' => '1' ,'date' => '487847','nick' => 'remdex')
)
)
);
 

In this case we must include additional file:

 
#include
 

And let say we want to print nick names. So our C++ file will look like.

 
QByteArray result;
result = QhttpClient->readAll();
 
QScriptValue sc;
QScriptEngine engine;
sc = engine.evaluate(QString(result));// In new versions it may need to look like engine.evaluate("(" + QString(result) + ")");
 
if (sc.property("result").isArray())
{
QScriptValueIterator it(sc.property("result"));
while (it.hasNext()) {
it.next();
qDebug("Nick %s",it.value().property("nick").toString().toStdString().c_str());
}
}
 

In this case we just use QScriptValueIterator and iterate through array. Anyway from this point everything is possible :)



阅读(1839) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~