尝试添加“ upvoting "到Crowducate.me的特定课程。
从图像中可以看出,该方法被正确调用。但是,我认为不了解更新方法(mongo)。这是我的个人源代码all commits on Github.
我的课程。咖啡(mongo collection)//顺便说一下:不能在这里格式化正确的缩进:
class @Course extends Minimongoid
@_collection: new Meteor.Collection('courses')
...
Meteor.methods({
createCourse: ->
userId = Meteor.userId()
throw new Meteor.Error 403, 'Please login to create a course' unless userId
title = 'New Course'
course = Course.create {
owner: userId, courseTitle: title, published: 0, upvoters: [], votes: 0, slug: slugify(title)
}
return course._id
upvote: (courseId) ->
course = Course.first({_id: courseId})
console.log course
#userId = Meteor.user()
Course.update {
_id: courseId,
# upvoters: {$ne: user._id}
# }, {
# $addToSet: {upvoters: user._id}
$inc: {votes: 1}
}
我的HTML
<template name="courseListItem">
<div class="course-list-item">
<a href="{{#if isMyCoursesPath}}{{pathFor 'courseUpdate'}}{{else}}{{pathFor 'courseShow'}}{{/if}}">
<div class="course-img">
{{#if courseOwner}}
<div class="owner-options">
<a href="{{pathFor 'courseUpdate'}}" class="btn btn-default" title="Edit Course"><i class="fa fa-edit"></i></a>
<button class="btn btn-danger delete" title="Delete Course"><i class="fa fa-trash-o"></i></button>
</div>
{{/if}}
<img class="img-resonsive" src="{{courseThumb}}">
</div>
<div class="well relative">
<div class="course"><h4>{{maxChars courseTitle 40}} by {{owner}}</h4></div>
<p class="course-list-item-preview-text">{{maxChars getText 65}}</p>
<p class="course-list-item-preview-text-votes"><a href="#" class="btn btn-default btn-xs"><i class="upvote fa fa-thumbs-up"></i></a> <strong>{{votes}}</strong> Votes</p>
<!-- <p class="course-list-item-preview-text">12 Votes</p> -->
<div class="bottom">
<p><i class="fa fa-tags" title="Tags"></i> {{maxChars getKeywords 28}}</p>
<p><i class="fa fa-group" title="Age Group"></i> {{age}}</p>
</div>
</div>
</a>
</div>
</template>
我的帮手:
'click .upvote': (evt) ->
Etc.prevent(evt)
Meteor.call 'upvote', this._id
也许这是具体的注册。到Coffeecode或MinimongoId?如果要在本地运行此命令,请使用mrt install,不要更新到软件包或meteor。另外,你测试了投票,你需要快速创建一门课程(在“教学”部分下)。
最佳, 阿米尔 P.S。:只是为了让你知道:我正在扩展另一个人的代码,并且没有很多使用CoffeeScript的经验。
答案 0 :(得分:1)
问题必须出在方法中:upvote并且你调用一个不存在的函数。
即使该方法看起来很好,也尝试取消注释除了简单的console.log“hi”之外的任何内容。并逐行删除取消注释。
或者可能是您使用的minimongoid软件包版本没有更新。请尝试使用Course._collection.update(...)。