0
  1. 我有一个 json 数组数据,比如{"RegistrationResult":"Registered Success:Empid:157:TableName:COMPANY156"}

  2. 现在我想如何拆分字符串并在 qml 中显示列表视图,如下所示

    注册成功

    Empid = 157

    表名 = COMPANY156

  3. 请告诉概念拆分字符串在 qml 中显示结果

我可以得到以下方法的结果:{"RegistrationResult":["Registered Success","Empid":"157","TableName":"COMPANY156"]}

但我不知道如何拆分字符串..请帮助..

4

1 回答 1

3

最后我通过参考文档得到了解决方案

http://developer.blackberry.com/native/reference/cascades/qstring.html#details

第 1 步:cpp标头 中声明#include <QStringList>

第2步:

JsonDataAccess jda;
        QVariantMap map = jda.loadFromBuffer(reply->readAll()).toMap();

        QVariantList addresses = map["RegistrationResult"].toList();

        qDebug() << "RegistrationResult is "<<map["RegistrationResult"].toString();


        QString result;
        QString empid;
        QString empid_no;
        QString companyname;
        QString::SectionFlag flag = QString::SectionSkipEmpty;

        result=m_temperature.section(':', 0, 0);
        empid=m_temperature.section(':', 1, 1);
        empid_no=m_temperature.section(':', 2, 2);
        companyname==m_temperature.section(':', 4, 4);
于 2013-09-10T12:10:42.193 回答