這裏是我的問題:找不到attachSchema財產上Mongo.Collection與angular2-流星
我想用簡單模式的力量,能夠檢查我的刀片對着下面的模式:
let UprocSchema = new SimpleSchema({
"name": { type : String, label: "Nom Uproc" },
"label": { type : String, label: "Libellé Uproc" },
"status": { type : String, label: "Status UPR" }
});
出於某種原因,我忽略了,即使SimpleSchema看起來很好實例,我也不能在Mongo.Collection上使用attachSchema屬性。
這裏是我的代碼:
let repo_collection = new Mongo.Collection('repository');
export const Repository = new MongoObservable.Collection<Uproc>('repo_collection');
repo_collection.attachSchema(UprocSchema);
這是我的錯誤信息:
Property 'attachSchema' does not exist on type 'Collection<{}>'.
TypeError: repo_collection.attachSchema is not a function
我想'''attachSchema'''是的'''collection2'''包部分 – blueren