6

次の SimpleSchema を使用して、重複する顧客名の入力に対して検証するカスタム検証を追加しようとしていますが、新しい顧客を保存しようとするとエラーが発生します。

'adminCheckNewCustomerName' の呼び出しの結果を配信する際の例外: TypeError: null のプロパティ 'namedContext' を読み取ることができません

重複したレコードに対して顧客名を検証するために、ここで間違っている/欠けていることを誰かに教えてもらえますか? ありがとう

schema.js:

AdminSection.schemas.customer = new SimpleSchema({
    CustomerName: {
        type: String,
        label: "Customer Name",
        unique: true,
        custom: function() {
            if (Meteor.isClient && this.isSet) {
                Meteor.call("adminCheckNewCustomerName", this.value, function(error, result) {
                    if (result) {
                        Customer.simpleSchema().namedContext("newCustomerForm").addInvalidKeys([{
                            name: "CustomerName",
                            type: "notUnique"
                        }]);
                    }
                });
            }
        }
    }
});

UI.registerHelper('AdminSchemas', function() {
    return AdminSection.schemas;
});

フォーム.html:

{{#autoForm id="newCustomerForm" schema=AdminSchemas.customer validation="submit" type="method" meteormethod="adminNewCustomer"}}
   {{>afQuickField name="CustomerName"}}
   <button type="submit" class="btn btn-primary">Save Customer</button>
{{/autoForm}}

コレクション.js:

this.Customer = new Mongo.Collection("customers");
4

1 に答える 1

5

コレクションに添付されたスキーマを取得するためのcollection2 コードを確認します。

_.each([Mongo.Collection, LocalCollection], function (obj) {
  obj.prototype.simpleSchema = function () {
    var self = this;
    return self._c2 ? self._c2._simpleSchema : null;
  };
});

この難解な同音異義語_c2(プログラミングにおける 2 つの難しいことの 1 つ...) は、次のことに由来attachSchemaます。

self._c2 = self._c2 || {};
//After having merged the schema with the previous one if necessary
self._c2._simpleSchema = ss;

attachSchemaこれは、コレクションのプロパティを忘れたか、いじったことを意味します。

解決するには:

Customer.attachSchema(AdminSchemas.customer);
//Also unless this collection stores only one customer its variable name should be plural
于 2015-09-08T15:02:13.277 に答える