メソッド
Meteor.methods({
'test' : function(test: string) {
return test;
}
})
成分
私のクラスは拡張しますMeteorComponent
show: string;
constructor() {
this.call('test', 'txt', (err, res) => {
this.show = res
});
}
見る
<span>{{show}}</span>
「txt」が表示されると予想されるため、何も表示されません。