1

和有什么区别:

this.subscribe('apples', () => {
  ngZone.run(()=>{
    this.apple= Apples.findOne( this.id);
  });

(第 1 行和第 2 行切换)

ngZone.run(()=>{
  this.subscribe('apples', () => {
    this.apple= Apples.findOne( this.id);
  });

在查看meteor-component时,将其包裹起来subscribe应该run可以工作。

但是,当我自己实现流星组件来调用不是 Meteor.subscribe 而是SubsManager.subscribe时,第一个示例不起作用,只有第二个。

你能解释一下区别吗?奖励:提示为什么在我的情况下第二个只有效。

4

0 回答 0