Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Mobile and Embedded
  4. How to get data from URL/.php file and display in my fields
Forum Updated to NodeBB v4.3 + New Features

How to get data from URL/.php file and display in my fields

Scheduled Pinned Locked Moved Solved Mobile and Embedded
30 Posts 2 Posters 6.7k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J jsulm
    14 Jan 2019, 07:42

    @Vineela said in How to get data from URL/.php file and display in my fields:

    2 or more arrays

    Are you talking about Json?

    V Offline
    V Offline
    Vineela
    wrote on 14 Jan 2019, 07:43 last edited by
    #9

    @jsulm yep, I thought I may not use JSON, do I have to use JSON if yes then help me with JSON.

    J 1 Reply Last reply 14 Jan 2019, 07:46
    0
    • V Vineela
      14 Jan 2019, 07:43

      @jsulm yep, I thought I may not use JSON, do I have to use JSON if yes then help me with JSON.

      J Offline
      J Offline
      jsulm
      Lifetime Qt Champion
      wrote on 14 Jan 2019, 07:46 last edited by
      #10

      @Vineela If the server sends Json then you have to deal with Json. I gave you a link to documentation for accessing Json data using Qt, you wrote you didn't read it. Now it is time to read that documentation.

      https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      1
      • V Offline
        V Offline
        Vineela
        wrote on 14 Jan 2019, 09:41 last edited by
        #11

        @jsulm this is the output of my link , well from this i need to get those "GNL0001 & GNL002" and add them to my combo box ,so i hope you get what I'm saying please help me out with this.
        [
        {
        "LeaderCode": "GNL0001"
        },
        {
        "LeaderCode": "GNL0002"
        }
        ]

        J 1 Reply Last reply 14 Jan 2019, 11:48
        0
        • V Vineela
          14 Jan 2019, 09:41

          @jsulm this is the output of my link , well from this i need to get those "GNL0001 & GNL002" and add them to my combo box ,so i hope you get what I'm saying please help me out with this.
          [
          {
          "LeaderCode": "GNL0001"
          },
          {
          "LeaderCode": "GNL0002"
          }
          ]

          J Offline
          J Offline
          jsulm
          Lifetime Qt Champion
          wrote on 14 Jan 2019, 11:48 last edited by jsulm
          #12

          @Vineela Did you read the documentation?

          AByteArray data = "YOUR JSON DATA";
          QJsonDocument doc = QJsonDocument::fromJson(data);
          QJsonArray array = doc.array();
          QJsonObject object = array.at(0).toObject();
          QString code = object["LeaderCode"].toString();
          

          To add to QComboBox please refer to the documentation: http://doc.qt.io/qt-5/qcombobox.html#insertItem

          https://forum.qt.io/topic/113070/qt-code-of-conduct

          V 1 Reply Last reply 14 Jan 2019, 12:12
          2
          • J jsulm
            14 Jan 2019, 11:48

            @Vineela Did you read the documentation?

            AByteArray data = "YOUR JSON DATA";
            QJsonDocument doc = QJsonDocument::fromJson(data);
            QJsonArray array = doc.array();
            QJsonObject object = array.at(0).toObject();
            QString code = object["LeaderCode"].toString();
            

            To add to QComboBox please refer to the documentation: http://doc.qt.io/qt-5/qcombobox.html#insertItem

            V Offline
            V Offline
            Vineela
            wrote on 14 Jan 2019, 12:12 last edited by
            #13

            @jsulm well yes i've done and read the documentation but small thing is item which i added is blank.

            J 1 Reply Last reply 14 Jan 2019, 12:16
            0
            • V Vineela
              14 Jan 2019, 12:12

              @jsulm well yes i've done and read the documentation but small thing is item which i added is blank.

              J Offline
              J Offline
              jsulm
              Lifetime Qt Champion
              wrote on 14 Jan 2019, 12:16 last edited by jsulm
              #14

              @Vineela First, you need to make sure you parsed Json correctly. The code I posted does not do that!
              Then please show your current code (reading Json and putting entries into combo box).
              One more question: are you sure you actually got the reply from server with Json?

              https://forum.qt.io/topic/113070/qt-code-of-conduct

              V 1 Reply Last reply 16 Jan 2019, 04:53
              1
              • J jsulm
                14 Jan 2019, 12:16

                @Vineela First, you need to make sure you parsed Json correctly. The code I posted does not do that!
                Then please show your current code (reading Json and putting entries into combo box).
                One more question: are you sure you actually got the reply from server with Json?

                V Offline
                V Offline
                Vineela
                wrote on 16 Jan 2019, 04:53 last edited by
                #15

                @jsulm

                void MainWindow::datainDaHouse2(QByteArray data)
                {
                //first
                 qDebug()<< "Jason value" +data;
                 QJsonDocument doc = QJsonDocument::fromJson(data);
                    QJsonArray array = doc.array();
                    QJsonObject object = array.at(0).toObject();
                    QString code = object["LeaderCode"].toString();
                
                        ui->comboBox_54->insertItem(3,code);
                     //second
                        qDebug()<< "InsertCode" +code;
                }
                

                well this is my current code and my output for qDebug is,
                //first
                "Jason value<pre>[\n {\n "LeaderCode": "GNL0001"\n },\n {\n "LeaderCode": "GNL0002"\n }\n]</pre>"
                //second here where my output getting blank
                "InsertCode"

                J 1 Reply Last reply 16 Jan 2019, 05:26
                0
                • V Vineela
                  16 Jan 2019, 04:53

                  @jsulm

                  void MainWindow::datainDaHouse2(QByteArray data)
                  {
                  //first
                   qDebug()<< "Jason value" +data;
                   QJsonDocument doc = QJsonDocument::fromJson(data);
                      QJsonArray array = doc.array();
                      QJsonObject object = array.at(0).toObject();
                      QString code = object["LeaderCode"].toString();
                  
                          ui->comboBox_54->insertItem(3,code);
                       //second
                          qDebug()<< "InsertCode" +code;
                  }
                  

                  well this is my current code and my output for qDebug is,
                  //first
                  "Jason value<pre>[\n {\n "LeaderCode": "GNL0001"\n },\n {\n "LeaderCode": "GNL0002"\n }\n]</pre>"
                  //second here where my output getting blank
                  "InsertCode"

                  J Offline
                  J Offline
                  jsulm
                  Lifetime Qt Champion
                  wrote on 16 Jan 2019, 05:26 last edited by
                  #16

                  @Vineela Your Json string is invalid as it contains <pre></pre>. You need to remove these HTML tags first.

                  data = data.replace("<pre>", "").replace("</pre>", "");
                  QJsonDocument doc = QJsonDocument::fromJson(data);
                  QJsonArray array = doc.array();
                  QJsonObject object = array.at(0).toObject();
                  QString code = object["LeaderCode"].toString();
                  
                  ui->comboBox_54->insertItem(3,code);
                  //second
                  qDebug()<< "InsertCode" +code;
                  

                  https://forum.qt.io/topic/113070/qt-code-of-conduct

                  V 1 Reply Last reply 16 Jan 2019, 05:33
                  0
                  • J jsulm
                    16 Jan 2019, 05:26

                    @Vineela Your Json string is invalid as it contains <pre></pre>. You need to remove these HTML tags first.

                    data = data.replace("<pre>", "").replace("</pre>", "");
                    QJsonDocument doc = QJsonDocument::fromJson(data);
                    QJsonArray array = doc.array();
                    QJsonObject object = array.at(0).toObject();
                    QString code = object["LeaderCode"].toString();
                    
                    ui->comboBox_54->insertItem(3,code);
                    //second
                    qDebug()<< "InsertCode" +code;
                    
                    V Offline
                    V Offline
                    Vineela
                    wrote on 16 Jan 2019, 05:33 last edited by
                    #17

                    @jsulm yes i got this "InsertCodeGNL0001" but wat abt GNL0002??

                    J 1 Reply Last reply 16 Jan 2019, 05:35
                    0
                    • V Vineela
                      16 Jan 2019, 05:33

                      @jsulm yes i got this "InsertCodeGNL0001" but wat abt GNL0002??

                      J Offline
                      J Offline
                      jsulm
                      Lifetime Qt Champion
                      wrote on 16 Jan 2019, 05:35 last edited by
                      #18

                      @Vineela Come on! If you get GNL0001 via array.at(0) then you get GNL0002 via array.at(1)...

                      https://forum.qt.io/topic/113070/qt-code-of-conduct

                      V 1 Reply Last reply 16 Jan 2019, 05:36
                      0
                      • J jsulm
                        16 Jan 2019, 05:35

                        @Vineela Come on! If you get GNL0001 via array.at(0) then you get GNL0002 via array.at(1)...

                        V Offline
                        V Offline
                        Vineela
                        wrote on 16 Jan 2019, 05:36 last edited by
                        #19

                        @jsulm i know but can't i add it within this line
                        QJsonObject object = array.at(0).toObject(); so i have to write another object2

                        J 1 Reply Last reply 16 Jan 2019, 05:38
                        0
                        • V Vineela
                          16 Jan 2019, 05:36

                          @jsulm i know but can't i add it within this line
                          QJsonObject object = array.at(0).toObject(); so i have to write another object2

                          J Offline
                          J Offline
                          jsulm
                          Lifetime Qt Champion
                          wrote on 16 Jan 2019, 05:38 last edited by
                          #20

                          @Vineela

                          object = array.at(1).toObject();
                          QString code = object["LeaderCode"].toString();
                          ui->comboBox_54->insertItem(3,code);
                          //second
                          qDebug()<< "InsertCode" +code;
                          

                          https://forum.qt.io/topic/113070/qt-code-of-conduct

                          V 2 Replies Last reply 16 Jan 2019, 05:40
                          0
                          • J jsulm
                            16 Jan 2019, 05:38

                            @Vineela

                            object = array.at(1).toObject();
                            QString code = object["LeaderCode"].toString();
                            ui->comboBox_54->insertItem(3,code);
                            //second
                            qDebug()<< "InsertCode" +code;
                            
                            V Offline
                            V Offline
                            Vineela
                            wrote on 16 Jan 2019, 05:40 last edited by
                            #21

                            @jsulm well I've added this
                            for(int i=0 ;i<array.size();i++){
                            QJsonObject object = array.at(i).toObject();
                            } it worked

                            1 Reply Last reply
                            0
                            • J jsulm
                              16 Jan 2019, 05:38

                              @Vineela

                              object = array.at(1).toObject();
                              QString code = object["LeaderCode"].toString();
                              ui->comboBox_54->insertItem(3,code);
                              //second
                              qDebug()<< "InsertCode" +code;
                              
                              V Offline
                              V Offline
                              Vineela
                              wrote on 16 Jan 2019, 05:41 last edited by
                              #22

                              @jsulm object = array.at(1).toObject();
                              I've done this too but got only second one so.

                              J 1 Reply Last reply 16 Jan 2019, 05:42
                              0
                              • V Vineela
                                16 Jan 2019, 05:41

                                @jsulm object = array.at(1).toObject();
                                I've done this too but got only second one so.

                                J Offline
                                J Offline
                                jsulm
                                Lifetime Qt Champion
                                wrote on 16 Jan 2019, 05:42 last edited by
                                #23

                                @Vineela said in How to get data from URL/.php file and display in my fields:

                                I've done this too but got only second one so

                                Yes, if you do this in a loop then you need to use index (i in your case) instead of fix numbers.

                                https://forum.qt.io/topic/113070/qt-code-of-conduct

                                V 2 Replies Last reply 16 Jan 2019, 05:44
                                0
                                • J jsulm
                                  16 Jan 2019, 05:42

                                  @Vineela said in How to get data from URL/.php file and display in my fields:

                                  I've done this too but got only second one so

                                  Yes, if you do this in a loop then you need to use index (i in your case) instead of fix numbers.

                                  V Offline
                                  V Offline
                                  Vineela
                                  wrote on 16 Jan 2019, 05:44 last edited by
                                  #24

                                  @jsulm well thank u so much for your help ,I've done it using for loop it worked.

                                  1 Reply Last reply
                                  1
                                  • J jsulm
                                    16 Jan 2019, 05:42

                                    @Vineela said in How to get data from URL/.php file and display in my fields:

                                    I've done this too but got only second one so

                                    Yes, if you do this in a loop then you need to use index (i in your case) instead of fix numbers.

                                    V Offline
                                    V Offline
                                    Vineela
                                    wrote on 16 Jan 2019, 07:05 last edited by
                                    #25

                                    @jsulm can u suggest here how to make it in ascending order???

                                    J 1 Reply Last reply 16 Jan 2019, 07:09
                                    0
                                    • V Vineela
                                      16 Jan 2019, 07:05

                                      @jsulm can u suggest here how to make it in ascending order???

                                      J Offline
                                      J Offline
                                      jsulm
                                      Lifetime Qt Champion
                                      wrote on 16 Jan 2019, 07:09 last edited by
                                      #26

                                      @Vineela

                                      for(int i = array.size() - 1 ; i >= 0; --i) {
                                          QJsonObject object = array.at(i).toObject();
                                      }
                                      

                                      https://forum.qt.io/topic/113070/qt-code-of-conduct

                                      V 2 Replies Last reply 16 Jan 2019, 07:15
                                      3
                                      • J jsulm
                                        16 Jan 2019, 07:09

                                        @Vineela

                                        for(int i = array.size() - 1 ; i >= 0; --i) {
                                            QJsonObject object = array.at(i).toObject();
                                        }
                                        
                                        V Offline
                                        V Offline
                                        Vineela
                                        wrote on 16 Jan 2019, 07:15 last edited by
                                        #27

                                        @jsulm thanks you've saved my day :D it worked fine.

                                        1 Reply Last reply
                                        0
                                        • J jsulm
                                          16 Jan 2019, 07:09

                                          @Vineela

                                          for(int i = array.size() - 1 ; i >= 0; --i) {
                                              QJsonObject object = array.at(i).toObject();
                                          }
                                          
                                          V Offline
                                          V Offline
                                          Vineela
                                          wrote on 17 Jan 2019, 10:24 last edited by
                                          #28

                                          @jsulm my data is getting repeated once i come back is that bcoz of my for loop?

                                          J 1 Reply Last reply 17 Jan 2019, 11:36
                                          0

                                          18/30

                                          16 Jan 2019, 05:35

                                          • Login

                                          • Login or register to search.
                                          18 out of 30
                                          • First post
                                            18/30
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Search
                                          • Get Qt Extensions
                                          • Unsolved