0

我正在使用 Qjson 解析从 Web 服务返回的 json 对象。我一直在处理一系列复杂的对象。

在第一层,Web 服务返回一个由“error”、“id”和“return”组成的映射。如果没有错误,我可以使用

 nestedMap = m_jsonObject["result"].toMap();
 group = new Group();
 group->Caption = nestedMap["Caption"].toString();
 group->CollectionCount = nestedMap["CollectionCount"].toInt();

我什至可以使用

group->ModifiedOn = nestedMap["ModifiedOn"].toMap()["Value"].toDateTime();

我有一个名为“Elements”的对象,它由 29 个键值对组成。Web 服务正在返回这些“元素”的数组,我无法找到解析它的正确方法。在头文件中,元素的容器定义为

QList<GroupElement> Elements;

线

group->Elements = nestedMap["Elements"].toList();

导致编译器抛出错误 'error: no match for 'operator=' in '((MyClass*)this)->MyClass::group->Group::Elements = QVariant::toMap() const()'

我想学习正确的语法来将此元素放入类中。

4

1 回答 1

0

更新:我写了另一个函数来将 QVariantMap 对象转换为

首先:将 group-> Elements 对象更改为

class ParentClass{
    QList<SharedDataPointer<Address> > Elements;
    other class memmbers...           
};

第二:创建了将QMap对象转换为Address对象的方法

QSharedDataPointer<Address>
API_1_6::mapToAddress(QVariantMap o)
{
    QSharedDataPointer<Address> address (new Address());
    address-> FirstName = o["FirstName"].toString();
    address->LastName = o["LastName"].toString();
    address->CompanyName = o["CompanyName"].toString();
    address->Street = o["Street"].toString();
    address->Street2 = o["Street2"].toString();
    address->City = o["City"].toString();
    address->Zip = o["Zip"].toString();
    address-> State = o["State"].toString();
    address->Country = o["Country"].toString();
    address->Phone = o["Phone"].toString();
    address->Phone2 = o["Phone2"].toString();
    address-> Fax = o["Fax"].toString();
    address-> Url = o["Url"].toString();
    address->Email = o["Email"].toString();
    address->Other = o["Other"].toString();

    return address;
}

第三:代码中使用foreach遍历列表,创建并存储新对象

// get the list of the elements
elementsList = nestedMap["Elements"].toList();
// Add the element, converted to the new type, to the Elements object of the'parent' class
foreach(QVariant qElement, elementsList){
    group-> Elements.append(mapToAddress(qElement))
}
于 2012-10-27T01:28:52.483 回答