javascript - Use waitOn on separate blocks in Meteor -
i new meteor. using iron-router
route on page. set waiton
property, making page load until publications subscribed.
but on many pages see load panels/cards separately, i.e. page loads elements on page load concurrently , finished loading on different times.
is such behaviour possible in meteor, instead of waiting subscriptions load before page can shown?
it's hard give concrete answer question, progressive loading default in meteor. if subscribe in ir, or globally, or your template, documents flow client server , templates should render data becomes available. note in many cases, you'll need add guards code in order fix race conditions.
using waiton special use of subscriptions block rendering of template until initial set of documents has arrived on client. should used in cases ui doesn't make sense progressive load (you need see of data @ once).
i hope helps give general overview. if have specific questions, leave comment , i'll best add more detail needed.
Comments
Post a Comment