如何在工作的Meteor项目上实现Collection2?

时间:2015-02-10 10:50:37

标签: meteor meteor-collection2

Collection2的文档说明了如何创建Schema,以及如何将Schema附加到集合中,但我认为这是一个包含插入/更新表单的完整工作示例,具有错误处理功能,以及没有autoform,就丢失了。

如何更改现有项目以使用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时,此代码的外观如何?

1 个答案:

答案 0 :(得分:1)

我和你在同一条船上,我基本上使用autoform来执行keyUp验证,而这就是它。 简而言之,collection2将运行相当于_.pick,跳过空字符串,尝试将输入强制转换为模式类型,验证文档,并运行模式autovalue函数。

check()不会尝试强制使用价值观,因此在某些边缘情况下,它很有用,但通常没有必要。

它的验证只不过是防止插入。因此,您仍然需要一些代码来改善用户体验。向他们展示他们已经搞砸的地方。