Я пытаюсь смоделировать публикацию, выполняющую кучу работы, и долгое время возвращать курсор.
У моего метода публикации есть вынужденный сон (с использованием будущего), но приложение всегда отображает только
Загрузка...
Здесь публикация:
Meteor.publish('people', function() {
Future = Npm.require('fibers/future');
var future = new Future();
//simulate long pause
setTimeout(function() {
// UPDATE: coding error here. This line needs to be
// future.return(People.find());
// See the accepted answer for an alternative, too:
// Meteor._sleepForMs(2000);
return People.find();
}, 2000);
//wait for future.return
return future.wait();
});
И маршрутизатор:
Router.configure({
layoutTemplate: 'layout',
loadingTemplate: 'loading'
});
Router.map(function() {
return this.route('home', {
path: '/',
waitOn: function() {
return [Meteor.subscribe('people')];
},
data: function() {
return {
'people': People.find()
};
}
});
});
Router.onBeforeAction('loading');
Полный исходный код: https://gitlab.com/meonkeys/meteor-simulate-slow-publication