我刚学会了这个方法
Meteor.defer(function() {
// Do something
});
在https://bulletproofmeteor.com,根据他们的简称:
Meteor.setTimeout(function() {
// Do something
}, 0);
但是,我在Official Meteor Documentation中没有发现这个功能。尽管它是核心的一部分,有没有理由不在那里?
答案 0 :(得分:2)
之前已经提出并在此处作为问题进行跟踪:https://github.com/meteor/meteor/issues/2176
简短的回答是他们没有记录所有功能,而且这个功能并不重要,因为它基本上只是一种速记。