Angular-moment js显示的是更早的日期而不是实际日期

时间:2016-11-19 16:23:41

标签: javascript angularjs momentjs angular-moment

我正在使用离子应用程序来使用他们的API检索raddit.com中的帖子。现在我的问题是,当我尝试使用 angular-moment 显示帖子的时间时,它显示帖子是在47年前发布的,实际上帖子是在几分钟前发布的。这是我在代码中使用的行。我在Ubuntu机器上编程。

<span am-time-ago="story.created_utc"></span>

1 个答案:

答案 0 :(得分:2)

我将代码编辑到了

interface IEmailSender
{
   void SendEmail();
}

public class EmailSender : IEmailSender 
{
   public void SendEmail()
   {
      throw new NotImplementedException();
   }

   public void DoOtherStuff()
   {
      throw new NotImplementedException();
   }
}