我正在尝试查看在客户端从 Meteor 方法调用获得结果后如何调用 js 函数。我唯一能得到的是myFunc
仅在进行实际方法调用的客户端上调用该函数。有什么想法可以在所有当前订阅的客户端上调用该函数吗?
这是代码:
function myFunc(error, result) {
alert(result);
}
if (Meteor.is_client) {
Template.container.events = {
'click input' : function () {
Meteor.call('someMethod',myFunc);
if (typeof console !== 'undefined')
console.log("You pressed the button");
}
};
}
if (Meteor.is_server) {
Meteor.startup(function () {
// code to run on server at startup
});
}
Meteor.methods({
someMethod: function() {
//console.log(!this.is_simulation);
return "something";
}
})
谢谢