标签: meteor simple-schema
我在使用此包进入数据库集合之前验证数据。我的集合中的一个字段必须包含一个字符串数组 - 我该如何验证它?
答案 0 :(得分:2)
YourCollection.attachSchema(new SimpleSchema({ ... yourArray: {type: [String]}, });