simple-schema

    3熱度

    2回答

    我需要在另一個集合中繼續一個collection.find()。我有一個名爲Orders的集合。 Orders = new Mongo.Collection('orders') Orders.attachSchema(new SimpleSchema({ clientId: { type: String }, orderDate: { type: Dat

    0熱度

    1回答

    我試圖在Meteor方法中實現檢查,但面臨SimpleSchema包的一些奇怪的行爲(我使用最新的1.3.3在此刻); 從文檔: 呼叫mySimpleSchema.validate(DOC)來驗證架構文檔,如果無效拋出一個ValidationError。這就像check(doc,mySimpleSchema),但沒有檢查依賴關係,並且能夠將完整的模式錯誤細節傳遞迴客戶端的回調。 我定義一個簡單的模

    0熱度

    2回答

    如何將自定義驗證消息發送到另一個模式字段? SessionSchema = new SimpleSchema({ 'seat.from': { type: String, max: 10, optional: false }, 'seat.to': { type: String, max: 10, optio

    0熱度

    1回答

    下面描述了讓我困惑的原因。 我定義了一個名爲SomeSchema的模式。 SomeSchema=new SimpleSchema({ content:{ type:[Object] } }); 然後我定義了一個名爲一些集合,這個集合重視SomeSchema。 Some=new Meteor.Collection('some'); Some.attachSch

    0熱度

    2回答

    我有關於關係和autoform的collection2的問題。 我嘗試實現1:n關係,其中每個對象都有一個objectType,而每個objectType可以引用多個對象。 我的架構如下所示: // register collections Objects = new Mongo.Collection('objects'); ObjectTypes = new Mongo.Collection

    0熱度

    1回答

    我使用的是第三方軟件包定義這樣的模式已構建的架構: People.schema = new SimpleSchema({ firstName: { type: String, optional: false } //Many other fields defined... }); 我想修改它有optional: true名字:在不改變源代碼爲

    0熱度

    1回答

    是否有可能將函數存儲在Meteor的MongoDB集合中? 我試圖定義與 const SchemaName = new SimpleSchema({ text: { type: String, }, transform: { type: Function, } }); CollectionName.attachSchema(Sche

    1熱度

    1回答

    我在流星(我使用模式)中有以下方法,我爲了在數據庫中插入一個對象而調用它。 userAddOrder: function(newOrder, prize) { var currentPrize; if (prize == undefined) { currentPrize = undefined; } else{ curr

    3熱度

    1回答

    我有一個Meteor AutoForm集合架構,其中包含以下字段,我試圖讓它具有唯一性。它不允許在相同的情況下相同的值,但是當我更改大小寫的情況下,值被插入,所以如何防止插入具有不同大小寫的重複值? 像Test,TEST,TesT所有具有相同的拼寫,所以它不應該插入。 我嘗試這樣做: Schemas.Organisation = new SimpleSchema({ company: {

    11熱度

    4回答

    我正在使用collection2,我試圖讓它來處理驗證是一種特定的方式。我有一個配置文件架構,看起來有點像這樣: Schema.UserProfile = new SimpleSchema({ name: { type: String, optional: false } location: { type: String,