我的收藏中有最少40个字段的15K记录,我创建了一个由记录生成的表格。在此表中,我有各种文件,如图像所示(来自Excel表)。
/client/main.js
Template.GetTable.helpers({
'getTotalData':function(key1,key2){
console.log("-------inside totalData()---------");
const projects1 = Template.instance().distinct1.get();
var filter1= _.map(projects1, col_8 => {
return {col_8};
});
q={};
p={};
console.log(filter1);
console.log(JSON.stringify(q));
//var queryData=test.find(q).fetch();
Meteor.call('getCountData',"all",function(err,count){
if(err)
console.log("Failed to call meteor..!");
else{
console.log(count);
return count;
}
});
},
});
/server/main.js
Meteor.methods({
'getCountData':function(type){
return test.find({"col_17" : " Query->:#####->x","col_8": { $regex: /^CQI?/i}}).count();
},
});
我只是测试测试,我知道如何从数据库获取计数。 我的问题是在所有渲染和调用助手之后,UI将加载而没有任何计数数据。但是当我在调试器中检查时,我得到了正确的计数,使用" console.log()"并且UI未更新。 我该如何解决这个问题?还是有任何有效的方法来解决这个问题?
答案 0 :(得分:2)
UI问题是你在帮助器内进行Meteor调用并将调用结果返回给自己,而不是帮助器。
以下是您正在做什么以及您应该做什么的示例。
不应该:
Template.GetTable.helpers({
'getTotalData':function(key1,key2){
Meteor.call('getCountData',"all",function(err,count){
if(err)
console.log("Failed to call meteor..!");
else {
return count; // Being returned to this function, not helper fuction
}
});
},
});
应:
var recVar = new ReactiveVar(false);
Template.GetTable.onCreated({
Meteor.call('getCountData',"all",function(err,count){
if(err)
console.log("Failed to call meteor..!");
else {
recVar.set(count);
}
});
});
Template.GetTable.helpers({
'getTotalData':function(key1,key2){
return recVar.get();
},
});