1

ユーザーを作成しようとすると、次のエラーが発生します。

Exception while invoking method 'createUser' Error: When the modifier option 
is true, validation object must have at least one operator

メソッドの呼び出しcreateUser方法は次のとおりです。

Template.register.events({
  "submit #register_form": function(event) {
    event.preventDefault();

    var $form   = $("#register_form");
    var attr    = {};
    var profile = {};


    // We gather form values, selecting all named inputs
    $("input[name]", $form).each(function(idx) {
      var $input = $(this);
      var name   = $input.attr("name");


      if (name == "email" || name == "password") {
        attr[ name ] = $input.val();
      }
      else if (name != "repeat_password") {
        profile[ name ] = $input.val();
      }
    });
    attr.profile = profile;


    // Creating user account (Cf Accounts module)
    Accounts.createUser(attr, function(error) {
      console.log(error);
    }); 
  },
});

attr次の値があります: ここに画像の説明を入力

usersスキーマを定義する方法は次のとおりです。

// Setting up Simple Schema (cf module)
var profile_schema = new SimpleSchema({
  firstname: {
    type:   String,
    regEx:  /^[a-z0-9A-Z_]{3,15}$/
  },
  lastname: {
    type:   String,
    regEx:  /^[a-z0-9A-Z_]{3,15}$/
  },
  celular: {
    type:     String,
    optional: true,
  },
});


var schema = new SimpleSchema({
  emails: {
    type:   [Object],
  },
  "emails.$.address": {
    type:   String,
    regEx:  SimpleSchema.RegEx.Email
  },
  "emails.$.verified": {
    type:   Boolean
  },
  profile: {
    type:     profile_schema,
    optional: true,
  },
  createdAt: {
    type:   Date
  },
});


// Attaching Simple Schema to the users collection (Cf collection2 module)
Meteor.users.attachSchema(schema);

正しくないものを見つけることができません。どんな提案でも大歓迎です!

4

1 に答える 1

2

可視性の回答としてコメントを追加する

次のように、サービス オブジェクトをユーザー スキーマに追加する必要があります。

services: { 
    type: Object,
    blackbox: true 
}

Meteor はメール ログイン用の「サービス」を追加するため、oAuth を使用していない場合でも、これを追加する必要があります。常に持っている必要があります。

于 2015-09-13T19:59:03.487 に答える