0
在KeystoneJS定期Relationship
場(categories
在這個例子中):KeystoneJS關係字段不保存空值
Post.add({
author: { type: Types.Relationship, ref: 'User' },
categories: { type: Types.Relationship, ref: 'PostCategory', many: true }
});
最初它是空的,但是當我增加一些價值給它,保存它,然後將其清除(所以該字段再次爲空),保存此型號不會更新categories
。
在Post.schema.pre('save', ...
console.log(this.categories)
表明this.categories
有以前的值,而它應該是空的。
有關此行爲的任何想法?