app.component.ts
import { Component } from '@angular/core';
import { Http } from '@angular/http';
@Component({
moduleId: module.id,
selector: 'app',
templateUrl: './app.component.html'
})
export class AppComponent {
fotos: Object[] = [];
constructor(http: Http) {
let stream = http.get('v1/fotos');
stream.subscribe(res => {
this.fotos = res.json();
})
}
}
Aparece a seguinte mensagem no console:
Angular 2 is running in the development mode. Call enableProdMode() to enable the production mode.core.umd.js:210:9
E o array não aparece, como resolver?