使用hammerjs,如何向左/向右滑动并显示集合中的下一个文档(MeteorJS)

时间:2015-03-26 00:52:33

标签: meteor hammer.js

我想要做的事听起来很简单。基本上在我的移动应用程序上,我希望能够使用chriswessels:hammer来滑动以查看集合的下一个文档。 现在,当我刷卡时没有任何反应,但代码是允许我刷卡的。

Template.auctionDetails.gestures({

  'swipeleft #ascensorBuilding': function (event, template) {
    alert('swipe left');
    event.preventDefault();
    return AuctionDeals.find(_id).next();

  },

  'swiperight #ascensorBuilding': function (event, template) {
    alert('swipe right');
    event.preventDefault();
    return AuctionDeals.find(_id).next();
  }

});

1 个答案:

答案 0 :(得分:-2)

所以,当你向左滑动时你也可以向右滑动,你最好尝试一些可以解决问题的方法。盖茨也许可以帮助你,祝你好运..