Retrieving Data from Firebase Error with Observables










0















I'm working on my first project with Firebase but I'm stuck.



I'm trying to retrieve all the data from the "news" node on my Firebase DB and I can't. It gives me nothing. I've also tested using the async pipe to unwrap the observable but that gives me a pipe error. Can someone help?



Here is a screenshot of my DB



enter image description here



service.ts



import AngularFireDatabase, AngularFireList from '@angular/fire/database';
import News from './news.model';
import Injectable from '@angular/core';

@Injectable()
export class NewsService
news: AngularFireList<News>;
constructor(private db: AngularFireDatabase)
this.news = db.list('news');

getNews()
return this.news;




component.ts



import map from 'rxjs/operators';
import ActivatedRoute from '@angular/router';
import News from './news.model';
import Component, OnInit from '@angular/core';
import Title from '@angular/platform-browser';
import NewsService from './news.service';

@Component(
selector: 'app-news',
templateUrl: './news.component.html',
styleUrls: ['./news.component.css']
)
export class NewsComponent implements OnInit
news: any;
constructor(private _titleService: Title, private newService: NewsService,
private route: ActivatedRoute)


ngOnInit()
this._titleService.setTitle('News');
this.news = this.newsService.getNews();
// this.route.params.subscribe(
// () =>
// this.newService.getNews();
//
// );





html



<app-subheader></app-subheader>

<div class="container top-space">
<div class="row">
<div class="col-sm-12 col-lg-4" *ngFor="let item of news">
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="#">
<div class="card-body">
<h5 class="card-title"> item.title </h5>
<span> item.subtitle </span>
</div>
<div class="card-footer">
<a href="#" class="btn btn-primary"><i class="far fa-eye"></i></a>
</div>
</div>
</div>
</div>
</div>









share|improve this question
























  • Why this line is commented this.newService.getNews();?

    – Paresh Gami
    Nov 13 '18 at 5:10











  • Just figured out where the problem was... after 4 hours... on the service.ts I called the methos valuesChanges() on the getNews(). getNews() return this.news.valueChanges() and on the HTML added the | async on the ngFor

    – iconio
    Nov 13 '18 at 5:15
















0















I'm working on my first project with Firebase but I'm stuck.



I'm trying to retrieve all the data from the "news" node on my Firebase DB and I can't. It gives me nothing. I've also tested using the async pipe to unwrap the observable but that gives me a pipe error. Can someone help?



Here is a screenshot of my DB



enter image description here



service.ts



import AngularFireDatabase, AngularFireList from '@angular/fire/database';
import News from './news.model';
import Injectable from '@angular/core';

@Injectable()
export class NewsService
news: AngularFireList<News>;
constructor(private db: AngularFireDatabase)
this.news = db.list('news');

getNews()
return this.news;




component.ts



import map from 'rxjs/operators';
import ActivatedRoute from '@angular/router';
import News from './news.model';
import Component, OnInit from '@angular/core';
import Title from '@angular/platform-browser';
import NewsService from './news.service';

@Component(
selector: 'app-news',
templateUrl: './news.component.html',
styleUrls: ['./news.component.css']
)
export class NewsComponent implements OnInit
news: any;
constructor(private _titleService: Title, private newService: NewsService,
private route: ActivatedRoute)


ngOnInit()
this._titleService.setTitle('News');
this.news = this.newsService.getNews();
// this.route.params.subscribe(
// () =>
// this.newService.getNews();
//
// );





html



<app-subheader></app-subheader>

<div class="container top-space">
<div class="row">
<div class="col-sm-12 col-lg-4" *ngFor="let item of news">
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="#">
<div class="card-body">
<h5 class="card-title"> item.title </h5>
<span> item.subtitle </span>
</div>
<div class="card-footer">
<a href="#" class="btn btn-primary"><i class="far fa-eye"></i></a>
</div>
</div>
</div>
</div>
</div>









share|improve this question
























  • Why this line is commented this.newService.getNews();?

    – Paresh Gami
    Nov 13 '18 at 5:10











  • Just figured out where the problem was... after 4 hours... on the service.ts I called the methos valuesChanges() on the getNews(). getNews() return this.news.valueChanges() and on the HTML added the | async on the ngFor

    – iconio
    Nov 13 '18 at 5:15














0












0








0








I'm working on my first project with Firebase but I'm stuck.



I'm trying to retrieve all the data from the "news" node on my Firebase DB and I can't. It gives me nothing. I've also tested using the async pipe to unwrap the observable but that gives me a pipe error. Can someone help?



Here is a screenshot of my DB



enter image description here



service.ts



import AngularFireDatabase, AngularFireList from '@angular/fire/database';
import News from './news.model';
import Injectable from '@angular/core';

@Injectable()
export class NewsService
news: AngularFireList<News>;
constructor(private db: AngularFireDatabase)
this.news = db.list('news');

getNews()
return this.news;




component.ts



import map from 'rxjs/operators';
import ActivatedRoute from '@angular/router';
import News from './news.model';
import Component, OnInit from '@angular/core';
import Title from '@angular/platform-browser';
import NewsService from './news.service';

@Component(
selector: 'app-news',
templateUrl: './news.component.html',
styleUrls: ['./news.component.css']
)
export class NewsComponent implements OnInit
news: any;
constructor(private _titleService: Title, private newService: NewsService,
private route: ActivatedRoute)


ngOnInit()
this._titleService.setTitle('News');
this.news = this.newsService.getNews();
// this.route.params.subscribe(
// () =>
// this.newService.getNews();
//
// );





html



<app-subheader></app-subheader>

<div class="container top-space">
<div class="row">
<div class="col-sm-12 col-lg-4" *ngFor="let item of news">
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="#">
<div class="card-body">
<h5 class="card-title"> item.title </h5>
<span> item.subtitle </span>
</div>
<div class="card-footer">
<a href="#" class="btn btn-primary"><i class="far fa-eye"></i></a>
</div>
</div>
</div>
</div>
</div>









share|improve this question
















I'm working on my first project with Firebase but I'm stuck.



I'm trying to retrieve all the data from the "news" node on my Firebase DB and I can't. It gives me nothing. I've also tested using the async pipe to unwrap the observable but that gives me a pipe error. Can someone help?



Here is a screenshot of my DB



enter image description here



service.ts



import AngularFireDatabase, AngularFireList from '@angular/fire/database';
import News from './news.model';
import Injectable from '@angular/core';

@Injectable()
export class NewsService
news: AngularFireList<News>;
constructor(private db: AngularFireDatabase)
this.news = db.list('news');

getNews()
return this.news;




component.ts



import map from 'rxjs/operators';
import ActivatedRoute from '@angular/router';
import News from './news.model';
import Component, OnInit from '@angular/core';
import Title from '@angular/platform-browser';
import NewsService from './news.service';

@Component(
selector: 'app-news',
templateUrl: './news.component.html',
styleUrls: ['./news.component.css']
)
export class NewsComponent implements OnInit
news: any;
constructor(private _titleService: Title, private newService: NewsService,
private route: ActivatedRoute)


ngOnInit()
this._titleService.setTitle('News');
this.news = this.newsService.getNews();
// this.route.params.subscribe(
// () =>
// this.newService.getNews();
//
// );





html



<app-subheader></app-subheader>

<div class="container top-space">
<div class="row">
<div class="col-sm-12 col-lg-4" *ngFor="let item of news">
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="#">
<div class="card-body">
<h5 class="card-title"> item.title </h5>
<span> item.subtitle </span>
</div>
<div class="card-footer">
<a href="#" class="btn btn-primary"><i class="far fa-eye"></i></a>
</div>
</div>
</div>
</div>
</div>






angular firebase firebase-realtime-database observable angularfire






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 13 '18 at 10:39









KENdi

5,7292821




5,7292821










asked Nov 13 '18 at 5:08









iconioiconio

468




468












  • Why this line is commented this.newService.getNews();?

    – Paresh Gami
    Nov 13 '18 at 5:10











  • Just figured out where the problem was... after 4 hours... on the service.ts I called the methos valuesChanges() on the getNews(). getNews() return this.news.valueChanges() and on the HTML added the | async on the ngFor

    – iconio
    Nov 13 '18 at 5:15


















  • Why this line is commented this.newService.getNews();?

    – Paresh Gami
    Nov 13 '18 at 5:10











  • Just figured out where the problem was... after 4 hours... on the service.ts I called the methos valuesChanges() on the getNews(). getNews() return this.news.valueChanges() and on the HTML added the | async on the ngFor

    – iconio
    Nov 13 '18 at 5:15

















Why this line is commented this.newService.getNews();?

– Paresh Gami
Nov 13 '18 at 5:10





Why this line is commented this.newService.getNews();?

– Paresh Gami
Nov 13 '18 at 5:10













Just figured out where the problem was... after 4 hours... on the service.ts I called the methos valuesChanges() on the getNews(). getNews() return this.news.valueChanges() and on the HTML added the | async on the ngFor

– iconio
Nov 13 '18 at 5:15






Just figured out where the problem was... after 4 hours... on the service.ts I called the methos valuesChanges() on the getNews(). getNews() return this.news.valueChanges() and on the HTML added the | async on the ngFor

– iconio
Nov 13 '18 at 5:15













0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53274180%2fretrieving-data-from-firebase-error-with-observables%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53274180%2fretrieving-data-from-firebase-error-with-observables%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







這個網誌中的熱門文章

Barbados

How to read a connectionString WITH PROVIDER in .NET Core?

Node.js Script on GitHub Pages or Amazon S3