有没有办法控制从客户端调用的所有服务器方法名称及其调用次数?
与Meteor.default_connection._subscriptions类似,显示所有订阅。
答案 0 :(得分:0)
使用将执行日志记录的功能包裹Meteor.call。文章显示how to create a wrapper function。
const call = Meteor.call;
Meteor.call = function() {
// call the db incrementing the call count.
return call(this, ...arguments);
}