当我在 angular2-meteor 项目中使用Collection2时,这些来自演示的代码总是在终端中给我警告:
返回表达式中不存在最佳通用类型。
如何改进代码?谢谢
{
createdAt: {
type: Date,
autoValue: function() {
if (this.isInsert) {
return new Date();
} else if (this.isUpsert) {
return {$setOnInsert: new Date()};
} else {
this.unset();
}
}
}
}