2017-01-31 7 views

답변

1

등가물은 자동 실행됩니다. 예를 들어

,의는이 방법으로 블레이즈 템플릿을 사용하는 가정 해 봅시다 :

{{> Bacon timesSmoked=getTimesSmoked}} 

당신은 횟수는 반응 적에게 대응할 수를 1에서 2로 변경 훈제 때 응답 할 다음과 같이 변경됩니다.

Template.Bacon.onCreated(function() { 
    this.autorun(function() { 
     let timesSmoked = Template.currentData().timesSmoked; 
     // do something with the new value 
    }); 
});