我正在研究流星。我需要在数据列表中的数据上实现无限滚动。我不知道如何实现它。我在气氛中看到了一些无限的滚动包,但我没有得到。由于我是这项技术的新手,我并不了解如何使用它。
Template.medicine.events({
'change #Search_Criteria':function (e) {
event.preventDefault();
myvalue=$(e.target).val();
console.log(myvalue);
Meteor.call('searched_medicines',myvalue,function(err,res)
{
if(res)
{
console.log(res);
SessionStore.set("Medicinevalue",res);
}
else {
console.log(err);
}
});
},
'input #search':function (event, template) {
d = $(event.currentTarget).val();
console.log(d);
Meteor.call('fetchValues',myvalue,d,function(error,response)
{
if(response)
{
SessionStore.set("Medi_values",response);
}
else {
console.log(err);
}
});
}
});
Template.medicine.helpers({
// Here will be helper for displaying data in client side//
searched_val:function(){
var a= SessionStore.get("Medicinevalue");
// console.log(a);
return a;
},
myfunction:function(){
var mydata=SessionStore.get("Medi_values");
return mydata;
}
});
先谢谢!!!!!