2

尝试使用自动表单通过 ValidatedMethod 更新集合时,出现错误“_id is not allowed by the schema”。

据我从这个例子官方文档中可以看出,我的架构不希望包含 _id 字段,我也不希望从更新语句中更新 id,所以我不知道为什么会出现这个错误正在发生。

如果我从使用经过验证的方法切换到直接写入集合(将模式附加到没有 id 的集合),一切都会按预期工作,所以我假设问题出在我的验证上验证方法。

知道我做错了什么吗?

模板:customer-edit.html

<template name="updateCustomerEdit">
    {{> quickForm
        collection="CustomerCompaniesGlobal"
        doc=someDoc
        id="updateCustomerEdit"
        type="method-update"
        meteormethod="CustomerCompanies.methods.update"
        singleMethodArgument=true
    }}
</template>

模板“后面的代码”:customer-edit.js

Template.updateCustomerEdit.helpers({

    someDoc() {
        const customerId = () => FlowRouter.getParam('_id');
        const instance = Template.instance();

        instance.subscribe('CustomerCompany.get', customerId());

        const company = CustomerCompanies.findOne({_id: customerId()});
        return company;
    }
});

更新验证方法:

// The update method
update = new ValidatedMethod({

    // register the name
    name: 'CustomerCompanies.methods.update',

    // register a method for validation, what's going on here?
    validate: new SimpleSchema({}).validator(),

    // the actual database updating part validate has already been run at this point
    run( newCustomer) {
    console.log("method: update");
        return CustomerCompanies.update(newCustomer);
    }
});

架构:

Schemas = {};

Schemas.CustomerCompaniesSchema = new SimpleSchema({

    name: {
        type: String,
        max: 100,
        optional: false
    },

    email: {
        type: String,
        max: 100,
        regEx: SimpleSchema.RegEx.Email,
        optional: true
    },

    postcode: {
        type: String,
        max: 10,
        optional: true
    },

    createdAt: {
        type: Date,
        optional: false
    }
});

收藏:

class customerCompanyCollection extends Mongo.Collection {};

// Make it available to the rest of the app
CustomerCompanies = new customerCompanyCollection("Companies");
CustomerCompaniesGlobal = CustomerCompanies;

// Deny all client-side updates since we will be using methods to manage this collection
CustomerCompanies.deny({
    insert() { return true; },
    update() { return true; },
    remove() { return true; }
});

// Define the expected Schema for data going into and coming out of the database
//CustomerCompanies.schema = Schemas.CustomerCompaniesSchema

// Bolt that schema onto the collection
CustomerCompanies.attachSchema(Schemas.CustomerCompaniesSchema);
4

2 回答 2

4

我终于明白了这一点。问题是 autoform 传入了一个复合对象,该对象表示要更改的记录的 id 以及数据的修饰符 ($set),而不仅仅是数据本身。所以那个对象的结构是这样的:

_id: '5TTbSkfzawwuHGLhy',
modifier:
{ 
  '$set':
    { name: 'Smiths Fabrication Ltd',
      email: 'info@smithsfab.com',
      postcode: 'OX10 4RT',
      createdAt: Wed Jan 27 2016 00:00:00 GMT+0000 (GMT Standard Time) 
    } 
} 

一旦我弄清楚了,我将我的更新方法更改为这个,然后一切都按预期工作:

// Autoform specific update method that knows how to unpack the single
// object we get from autoform.
update = new ValidatedMethod({

    // register the name
    name: 'CustomerCompanies.methods.updateAutoForm',

    // register a method for validation.
    validate(autoformArgs) {
        console.log(autoformArgs);
        // Need to tell the schema that we  are passing in a mongo modifier rather than just the data.
        Schemas.CustomerCompaniesSchema.validate(autoformArgs.modifier , {modifier: true});
    },

    // the actual database updating part
    // validate has already been run at this point
    run(autoformArgs)
    {
        return CustomerCompanies.update(autoformArgs._id, autoformArgs.modifier);
    }
});
于 2016-01-29T17:57:14.137 回答
1

出色的。当我努力寻找有关该主题的任何其他信息时,您的帖子帮助了我。

为了建立您的答案,如果出于某种原因您想将表单数据作为单个块获取,您可以在 AutoForm 中使用以下内容。

type="method" meteormethod="myValidatedMethodName"

然后,您经过验证的方法可能如下所示:

export const myValidatedMethodName = new ValidatedMethod({
  name: 'Users.methods.create',
  validate(insertDoc) {
    Schemas.NewUser.validate(insertDoc);
  },
  run(insertDoc) {
    return Collections.Users.createUser(insertDoc);
  }
});

注意: Schema.validate() 方法需要一个对象,而不是像以前那样的修饰符。

我不清楚这两种方法是否有任何明显的优势。

type="method-update" 显然是您想要更新文档的方式,因为您获得了修饰符。type="method" 似乎是创建新文档的最佳方式。在您不打算从表单数据创建文档的大多数情况下,它也可能是最佳选择。

于 2016-04-12T05:53:38.810 回答