我正在使用流星的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 } }