方法
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”。