Search code examples
typescriptionic-frameworkionic3ionic-native

woocommerce-api with ionic3 and cordova


I'm using ionic 3 to retrieve data from woocommerce and view them on the simulator, my problem is the code does get the array of data(JSON data) but won't show them on the simulator, here is the code I used

enter image description here

enter image description here

enter image description here


Solution

  • at line number 27 in home.ts page

    replace

    this.products = JSON.parse(data.body).products
    

    with

    this.products = JSON.parse(data.body)