We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Going through this very well written book with friend.Figured out that this needs to be wrapped in a startup function:
Meteor.startup(function() { if (Posts.find().count() === 0) { Posts.insert({ title: 'Introducing Telescope', author: 'Sacha Greif', url: 'http://sachagreif.com/introducing-telescope/' }); Posts.insert({ title: 'Meteor', author: 'Tom Coleman', url: 'http://meteor.com' }); Posts.insert({ title: 'The Meteor Book', author: 'Tom Coleman', url: 'http://themeteorbook.com' }); } });
It seems that without it, the condition is not being looked at. Now the collection gets populated if empty.
The text was updated successfully, but these errors were encountered:
This worked
Sorry, something went wrong.
No branches or pull requests
Going through this very well written book with friend.Figured out that this needs to be wrapped in a startup function:
Meteor.startup(function() {
if (Posts.find().count() === 0) {
Posts.insert({
title: 'Introducing Telescope',
author: 'Sacha Greif',
url: 'http://sachagreif.com/introducing-telescope/'
});
Posts.insert({
title: 'Meteor',
author: 'Tom Coleman',
url: 'http://meteor.com'
});
Posts.insert({
title: 'The Meteor Book',
author: 'Tom Coleman',
url: 'http://themeteorbook.com'
});
}
});
It seems that without it, the condition is not being looked at. Now the collection gets populated if empty.
The text was updated successfully, but these errors were encountered: