我无法在Meteor文档中的任何位置找到此信息,但似乎this.ready()
内this.autorun()
始终在修改集合(与此出版物相关)后触发。这是真的?
var h = this.subscribe('my-publication');
this.autorun(function() {
if (h.ready()) {
// Does this block run after a
// collection add/update/remove?
}
}