Meteor - Display Single Memo Page From Memos List
Im pulling my hair out right now. Cant get to display single memo detailed page for my memos app. I tried tens of solutions. Sometimes i can see data for a milisecond then it dissa
There is a typo:
Memos.findOne({id: this.params._id});
should be
Memos.findOne({_id: this.params._id});
or just
Memos.findOne(this.params._id);
Post a Comment for "Meteor - Display Single Memo Page From Memos List"