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 を呼び出す meteor-component の独自の実装を行う場合最初の例は機能せず、2 番目の例のみが機能します。

違いを教えてください。ボーナス:私の場合、2番目のものだけが機能する理由のヒント。

4

0 に答える 0