3

我正在使用流星的autoform 包,但是当我尝试更新集合中的文档时,我似乎无法获取_id记录来更新它。

我正在使用 autoform,type=method-update所以我可以在服务器端验证它。当我尝试下面的代码时,它失败了,因为_id未定义。

模板:

{{#autoForm collection="Lessons" doc=lesson id="updateLessonForm"  type="method-update" meteormethod="updateLesson"}}
        <fieldset>
            {{> afFieldInput name="categoryId" firstOption="(Select a Category)" options=categoryOptions}}
            {{> afQuickField name='title'}}
            {{> afQuickField name='summary' rows=2}}
            {{> afQuickField name='detail' rows=1}}
            {{> afQuickField name='extras' rows=1}}
            {{> afQuickField name='active'}}
        </fieldset>
        <button type="submit" class="btn btn-primary btn-block">Update Lesson</button>
    {{/autoForm}}

服务器端方法:

updateLesson: function (doc) {
    check(doc, Lessons.simpleSchema());
    Lessons.update({_id: this._id}, doc);
}

更新:

doc._id returns undefined

doc returns:
I20150409-23:15:22.671(-5)? { '$set': 
I20150409-23:15:22.672(-5)?    { categoryId: 1,
I20150409-23:15:22.672(-5)?      title: 'Lesson 1 update',
I20150409-23:15:22.672(-5)?      summary: 'Summary for lesson 2',
I20150409-23:15:22.672(-5)?      detail: '<p>dsffdsfd</p>',
I20150409-23:15:22.672(-5)?      extras: '<p>fdsf</p>',
I20150409-23:15:22.672(-5)?      active: false } }
4

1 回答 1

2

如果你打印 doc,你应该得到文件,所以this._id应该改成doc._id.

注意:在更新之前尝试使用console.log来查看您获得的值。

console.log(this._id)//should return undefined.
console.log(doc._id)//should return the id
console.log(doc)//should return the doc.

更新

为了得到_id,你应该调用第二个参数。

updateLesson: function (doc,doc_id) {
    check(doc, Lessons.simpleSchema());
    Lessons.update({_id: this._id}, doc);
}
于 2015-04-10T03:26:15.307 回答