如何在模板助手内部使用Meteor方法
Meteor.methods({
viewTest : function (str) {
return str;
}});Template.helloWorld.helpers({
txt : function () {
var str = Meteor.call('viewTest', 'Hello World.');
return str;
}});
慕无忌1623718
随时随地看视频慕课网APP
相关分类