Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. for (const item of result.data) {
  2. pos = 0;
  3. const inmueble = new Inmueble();
  4. inmueble.nombre = item.nomb_prod_c;
  5. inmueble.id = item.id;
  6. inmueble.estacionamiento = item.estan_c;
  7. inmueble.baño = item.banof_c;
  8. console.log(inmueble.nombre);
  9. (item.fot01_c != "") ? inmueble.fotos[0]="true": inmueble.fotos[0]="false";
  10. pos++;
  11.  
  12. this.inmuebles.push(inmueble);
  13.  
  14. console.log("----->" + this.inmuebles[0].fotos[0]);
  15. console.log("----->" + this.inmuebles[1].fotos[0]);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement