【发布时间】:2014-12-31 06:56:32
【问题描述】:
我似乎无法解决这个看似简单的问题。
下面的代码允许我在我的帖子对象上将喜欢的数量加或减 1。
我希望能够做到以下几点:
如果 postLikes = 0 则停止允许我减少喜欢的次数。
我不想将喜欢的次数减少到 0 以上。
这是我的代码:
Template.post.events({
"click .likeButton": function() {
// Set the checked property to the opposite of its current value
Posts.update(this._id, {
$inc: {
postLikes: 1
}
});
},
"click .dislikeButton": function() {
// Set the checked property to the opposite of its current value
Posts.update(this._id, {
$inc: {
postLikes: -1
}
});
}
});
【问题讨论】:
标签: javascript mongodb meteor handlebars.js