Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. {
  2. "station":[
  3. {
  4. "id_station":"191",
  5. "place":"Fila 9 del cultivo",
  6. "brand":"xxxx"
  7. },
  8. {
  9. "id_station":"999",
  10. "place":"Fila 2 del cultivo",
  11. "brand":"xxxx"
  12. }
  13. ],
  14. "_id":"5cc2e8d425c4b8ba6cb87bc0",
  15. "timestamp":"2018-09-25T11:26:23.166Z",
  16. "name":"xxxxxx",
  17. "fiware_Service":"xxxx",
  18. "fiware_ServicePath":"/xxxx",
  19. "usuario":null,
  20. "id_greenhouse":1
  21. },
  22. {
  23. "station":[
  24. {
  25. "id_station":"457",
  26. "place":"Fila 9 del cultivo",
  27. "brand":"xxxxx"
  28. },
  29. {
  30. "id_station":"012080F3",
  31. "place":"Fila 2 del cultivo",
  32. "brand":"xxxxx"
  33. }
  34. ],
  35. "_id":"5ce7ea5ec6b02a54c6a393c9",
  36. "timestamp":"2018-09-25T11:26:23.166Z",
  37. "name":"xxxx",
  38. "fiware_Service":"xxx",
  39. "fiware_ServicePath":"/xxxxx",
  40. "usuario":null,
  41. "id_greenhouse":3
  42. }.......
  43.  
  44. <div class="col-md-4 text-center" *ngFor="let green of greenhouse; let i = index">
  45. <a [routerLink]="['/greenhouse', green._id, green.station.id_station]" [routerLinkActive]="['active']">
  46. <img (click)="local(green.id_greenhouse)" src="assets/img/invernadero.jpg" width="100" height="100" alt="">
  47. </a>
  48. <hr>
  49. <b>{{green.name}}</b>
  50. <hr>
  51. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement