Search code examples
jsonionic-frameworkionic2hybrid-mobile-appmulti-device-hybrid-apps

How to parse JSON in Ionic 2?


I am new in Ionic-2 hybrid App development and need to parse the JSON to use web services. I am not able to get any response from the server. I need to fetch data from the server and display it in "Product details page". My Json structure is

{
"id": 1,
"product": "Gerbera",
"product_type_id": 1,
"description": "Gerbera L. is a genus of plants Asteraceae. It was named in honour of German botanist and medical doctor Traugott Gerber | who travelled extensively in Russia and was a friend of Carl Linnaeus.",
"images": "http://factoryunlock.in/sundar/public/uploads/photos/07_17/1500965697_Growing-Gerbera-Flowers.jpg" }

My ionic Home.ts file code is:

 import { Component } from '@angular/core';
    import { IonicPage, NavController, NavParams } from 'ionic-angular';
    import { EarthquakesProvider } from'../../providers/earthquakes/earthquakes';
@IonicPage()
@Component({
  selector: 'page-details',
  templateUrl: 'details.html',
  providers: [EarthquakesProvider]
})
export class DetailsPage {

   // public DateList: Array<Object>;

    item: any;
     id: number;
    constructor(public navCtrl: NavController, public earthquakes: EarthquakesProvider, public navParams: NavParams) {

         this.id = navParams.get('id');


    }
    ionViewDidLoad() {
        this.getEarthquakes(this.id);
}
    getEarthquakes(id) {
        this._earthquakes.loadEarthquakesdetails(id).subscribe(res => {
         this.item=res;

        });
    }

 }

My home.html file is:

<ion-header>
  <ion-navbar>
    <button ion-button menuToggle>
      <ion-icon name="menu"></ion-icon>
    </button>
    <ion-title> Product Details</ion-title>
  </ion-navbar>
</ion-header>

<ion-content class="content-background">

  <ion-list>
    <button ion-item  style="background: #eee;border: 1px solid #888;height: 40px">

      {{ " Flower Name :" + product }} 

    </button>

    <ion-card >
      <div class=" col-50">
        <ion-item  style="width:100%">
          <img [src]="images" />
        </ion-item>
      </div>
      </ion-card>

      <button ion-item text-wrap style="background: #eee;border: 1px solid #888">
        <div class="item item-text-wrap">


          {{" Discription :" +  description }}

</div>

      </button>

      <ion-list>

My provider code is:

loadEarthquakesdetails(id) {
        let headers = new Headers();
            headers.append('Content-Type', 'application/json');  
            headers.append('Authorization', 'Bearer ' + "eAKu0hiSYTqJTkV2yaBz6K1gVDK2TIDFcemjut3nlNoEJTRCNGEKHXRTi972");
        return this._http.get(`http://factoryunlock.in/sundar/public/api/v1/products/${id}`,{headers: headers})
            .map(res => res.json());
    }

Screenshot of my app:

screen 1

Please suggest any solution. thank you.


Solution

  • Home.ts

    public item: any = {};
    

    Home.html

        <ion-list>
            <button ion-item style="background: #eee;border: 1px solid #888;height: 40px">
             Flower Name:  {{item?.product}}
            </button>
            <ion-card>
                <div class=" col-50">
                    <ion-item style="width:100%">
                        <img [src]="item?.images" />
                    </ion-item>
                </div>
            </ion-card>
    
            <button ion-item text-wrap style="background: #eee;border: 1px solid #888">
                <div class="item item-text-wrap">
                  Discription : {{ item?.description }}
                </div>
              </button>
    
    
       </ion-list>