gpt4 book ai didi

javascript - wrapMethod Meteor 方法

转载 作者:行者123 更新时间:2023-12-02 16:05:39 25 4
gpt4 key购买 nike

我正在研究这个演示文稿,building large meteor applications ,我喜欢wrapMethod()的想法,但似乎我不能像示例中那样使用它。

这是我的代码。

Meteor.methods({

'EX.Accounts.Methods.updateProfileData' : function(userId, firstName, secondName) {
check([firstName, secondName], [String]);
Meteor.users.update(userId, {
$set: {
'profile.firstName': firstName,
'profile.lastName': secondName,
'profile.isRegisted': true
}
});
}
});

EX.Accounts.Methods.updateUserProfile = EX.wrapMethod('EX.Accounts.Methods.updateProfileData');

但是我收到了这个错误。

TypeError: Object # has no method 'wrapMethod'

我缺少一些我知道的东西,但找不到有关此“wrapMethod”的任何信息

更新

也尝试一下

_.extend(EX.Accounts.Methods,{
updateUserProfile : EX.Accounts.Methods.updateProfileData
});

这不会返回错误,但我在全局命名空间上没有看到该方法。

EX.Accounts.Methods 很清楚,没有方法。

最佳答案

我认为开发人员在他的 PB 对象上创建了方法 wrapMethod。尽你所能see here Meteor 中没有名为 wrapMethod 的东西。我猜他们写了这样的东西:

PB.wrapMethod = function wrapMethod (meteorMethod) {
return function wrappedMeteorMethod (/*arugments*/) {
Meteor.apply(meteorMethod, arguments)
}
}

我觉得这还算简洁。顺便说一句:正如你所看到的,我喜欢命名我的匿名函数。使调试更加顺利。

关于javascript - wrapMethod Meteor 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30786789/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com