meteor – 返回表达式中不存在最常见的类型

前端之家收集整理的这篇文章主要介绍了meteor – 返回表达式中不存在最常见的类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我在angular2-meteor项目中使用 Collection2时,demo的这些代码总是在终端给我警告:

No best common type exists among return expressions.

我该如何改进代码?谢谢

{
  createdAt: {
    type: Date,autoValue: function() {
      if (this.isInsert) {
        return new Date();
      } else if (this.isUpsert) {
        return {$setOnInsert: new Date()};
      } else {
        this.unset();
      }
    }
  }
}
由于每个返回分支都需要一种Date类型,因此必须为每个if / else分支返回Date类型,或者您可以创建一个返回两种不同类型的union.

在任何一种情况下,如果类型为Date,则可以为第三个条件返回null.这在打字稿中是有效的.

autoValue: function() : Date|Object  {
    if (this.isInsert) {
        return new Date();
    } else if (this.isUpsert) {
        return {$setOnInsert: new Date()};
    } else {
        this.unset();
        return null;
    }
}
原文链接:https://www.f2er.com/angularjs/142093.html

猜你在找的Angularjs相关文章