【发布时间】:2023-03-06 16:33:01
【问题描述】:
我想让所有类别都小写 我试过这个:
ArticleSchema.pre('save', function(next) {
_.map(this.categories, function(category) {
console.log(category.toLowerCase());
return category.toLowerCase();
});
next();
});
但它不起作用(如果我插入 ie PHP,JAVA 我会找到 PHP,JAVA)
怎么了?
【问题讨论】: