Collection2的文档解释了如何创建Schema以及如何将 Schema 附加到集合,但我认为缺少插入/更新表单、错误处理且没有自动表单的完整工作示例。
如何更改现有项目以使用 Collection2?具体来说:
- 我还需要
check(Meteor.userId(), String);
吗? - 我不再需要打电话
check()
了吗? - 我可以删除我的验证码吗?我只需调用
insert()
,Collection2 将通过架构捕获所有错误? - 还有什么我应该改变的吗?
这里是来自 DiscoverMeteor 的示例代码:
Meteor.methods({
postInsert: function(postAttributes) {
check(Meteor.userId(), String);
check(postAttributes, {
title: String,
url: String
});
var errors = validatePost(postAttributes);
if(errors.title || errors.url) {
throw new Meteor.Error('invalid-post', 'Set a title and valid URL for your post');
}
var user = Meteor.user();
var post = _.extend(postAttributes, {
userId: user._id,
author: user.username,
submitted: new Date(),
commentsCount: 0
});
var postId = Posts.insert(post);
return {
_id: postId
};
}
});
validatePost = function(post) {
var errors = {};
if(!post.title) {
errors.title = "Please fill in a headline";
}
if(!post.url) {
errors.url = "Please fill in a URL";
} else if(post.url.substr(0, 7) != "http://" && post.url.substr(0, 8) != "https://") {
errors.url = "URLs must begin with http:// or https://";
}
return errors;
}
当更新为使用 Collection2 时,这段代码会是什么样子?