遍歷QjsonObject方式
方式一
QJsonObject::const_iterator it = l_obj.constBegin();
QJsonObject::const_iterator end = l_obj.constEnd();
while(it != end)
            { 
        it.key();
it.value();
it++;
}
方式二
QVariantMap abc = l_obj.toVariantMap();
變成遍歷QVariantMap就ok
