我希望所有类别都是小写的 我试过这个:
ArticleSchema.pre('save', function(next) {
_.map(this.categories, function(category) {
console.log(category.toLowerCase());
return category.toLowerCase();
});
next();
});
但它不起作用(如果我插入即PHP,JAVA我发现PHP,JAVA)
出了什么问题?
答案 0 :(得分:1)
map()
没有修改原始数组,您需要将结果分配给属性:
ArticleSchema.pre('save', function(next) {
this.categories = _.map(this.categories, function(category) {
console.log(category.toLowerCase());
return category.toLowerCase();
});
next();
});