Вы можете использовать метод 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
});