Метеор Коллекции Simpleschema, автозначение в зависимости от других значений поля - PullRequest
0 голосов
/ 24 октября 2018

У меня есть три поля в Коллекции:

Cards.attachSchema(new SimpleSchema({
  foo: {
    type: String,
  },
  bar: { 
    type: String,
  },
  foobar: {
    type: String,
    optional: true,
    autoValue() { 
      if (this.isInsert && !this.isSet) {
        return `${foo}-${bar}`;
      }
    },
  },
);

Поэтому я хочу, чтобы поле foobar получало значение auto (или значение по умолчанию), если оно не задано явно, для возврата обоих значений foo ибар.Возможно ли это?

1 Ответ

0 голосов
/ 25 октября 2018

Вы можете использовать метод this.field() внутри вашей функции autoValue:

Cards.attachSchema(new SimpleSchema({
  foo: {
    type: String,
  },
  bar: { 
    type: String,
  },
  foobar: {
    type: String,
    optional: true,
    autoValue() { 
      if (this.isInsert && !this.isSet) {
        const foo = this.field('foo') // returns an obj
        const bar = this.field('bar') // returns an obj
        if (foo && foo.value && bar && bar.value) {
          return `${foo.value}-${bar.value}`;
        } else {
          this.unset()
        }
      }
    },
  },
);

Связанное чтение: https://github.com/aldeed/simple-schema-js#autovalue

Однако вы также можете решить эту проблему с помощью используя метод insert вашей коллекции.Там можно предположить, что присутствуют значения foo и bar, потому что ваша схема требует их:

Cards.attachSchema(new SimpleSchema({
  foo: {
    type: String,
  },
  bar: { 
    type: String,
  },
  foobar: {
    type: String,
    optional: true,
  },
);



Cards.after.insert(function (userId, doc) {
   // update the foobar field depending on the doc's 
   // foobar values
});
...