以下代码:
Meteor.push("svse",function(){
if(UserUtils.isAdmin(this.userId)) //is Administrator?
return Svse.find();
var arr = ["1","1.2"]; //just a example
var nodes = Svse.find({sid:{$in:arr}}).fetch();
var newNodes = new Array();
for(i in nodes){
var newNode = nodes[i];
newNode["son"] = ArrayUtils.intersect(arr,newNode["son"]);
newNodes.push(newNode)
}
return newNodes;
});
ArrayUtils={};
Object.defineProperty(ArrayUtils,"intersect",{
value : function(a,b){
var ai=0;
var bi=0;
var result = new Array();
while( ai < a.length && bi < b.length ){
if(a[ai] < b[bi] ) {
ai++;
} else if(a[ai] > b[bi] ){
bi++;
} else {
result.push(a[ai]);
ai++;
bi++;
}
}
return result;
}
});
在流星启动时导致错误:
来自 sub ac338EvWTi2tpLa7H 错误的异常: 发布函数返回一个非游标数组
如何将数组转换为游标?还是像ArrayUtils.intersect()
在 此处操作查找查询一样处理数组?