我正在使用 Collection2 进行表单插入和验证。它工作得很好。
我唯一的问题是使用上下文访问将错误返回给客户端用户的键。
我有以下代码:
Common.coffee
Schemas = {}
Schemas.Journal = new SimpleSchema
goal:
type: String
label: "Related Goal"
max: 200
description:
type: String
label: "Comment"
max: 200
likes:
type: Number
label: "Likes"
min: 0
createdBy:
type: String
max: 50
createdAt:
type: Date
label: "Created At"
Journal.attachSchema(Schemas.Journal)
journalContext = Schemas.Journal.namedContext("insertForm")
On Client:
Template.journalForm.events
'submit #newEntryForm': (event) ->
text = event.target.text.value
Meteor.call("newJournalEntry", Session.get("activeGoal"), text)
On Server as a Method:
'newJournalEntry': (goalId, text) ->
Journal.insert
goal: goalId
description: text
createdAt: new Date()
createdBy: Meteor.userId()
likes: 0
{validationContext: "insertForm"}, (error, result) ->
if error
console.log error.invalidKeys
else
console.log "#{result} added to Journal collection."
验证在服务器上正常工作,当插入被拒绝时,我通过终端看到正确的消息,但在客户端上调用验证上下文总是返回一个空数组。[]
以下任一在服务器上工作,但如果我在客户端上尝试这些它们是空的:
Schemas.Journal.namedContext("insertForm").invalidKeys()
或者
error.invalidKeys
更新: 我在客户端的语法上尝试了更多尝试。相同的空数组结果。以下是尝试:
Schemas.Journal.namedContext().invalidKeys()
journalContext.invalidKeys()
Schemas.Journal.namedContext("insertForm").invalidKeys()