我从Meteor开始,想要组织我的方法...... 例如,我有2个集合:'a'和'b',都有插入方法..我想做类似的事情:
Meteor.methods({
a: {
insert : function(){
console.log("insert in Collection a");
}
},
b: {
insert : function(){
console.log("insert in Collection b");
}
}
});
然后拨打
Meteor.call('a.insert');
可以这样做吗?或者我如何组织我的方法?
我不想做像'insertA'和'insertB'
这样的方法答案 0 :(得分:6)
您可以使用以下语法:
Meteor.methods({
"a.insert": function(){
console.log("insert in Collection a");
}
"b.insert": function(){
console.log("insert in Collection b");
}
});
允许您执行Meteor.call("a.insert");
。
答案 1 :(得分:5)
基于saimeunt的想法,如果您关心代码中这些组的优雅,您还可以为代码添加辅助函数。然后你可以使用你喜欢的符号,甚至任意嵌套组:
var methods = {
a: {
insert : function(){
console.log("insert in Collection a");
}
},
b: {
insert : function(){
console.log("insert in Collection b");
},
b2: {
other2: function() {
console.log("other2");
},
other3: function() {
console.log("other3");
}
}
},
};
function flatten(x, prefix, agg) {
if (typeof(x) == "function") {
agg[prefix] = x;
} else {
// x is a (sub-)group
_.each(x, function(sub, name) {
flatten(sub, prefix + (prefix.length > 0 ? "." : "") + name, agg);
});
}
return agg;
}
Meteor.methods(flatten(methods, "", {}));
然后用点符号调用,例如:
Meteor.call('b.b2.other2');