1
resposta

Mensagem Angular 2 rodando em modo Desenvolvimento

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?

1 resposta

A mensagem Angular 2 is running in the development mode. Call enableProdMode() to enable the production mode.core.umd.js:210:9 é padrão, não se preocupe, porque você esta em ambiente de desenvolvimento.

Não entendi quando você diz "o array não parece". Pode explicar melhor?