我正在使用离子应用程序来使用他们的API检索raddit.com中的帖子。现在我的问题是,当我尝试使用 angular-moment 显示帖子的时间时,它显示帖子是在47年前发布的,实际上帖子是在几分钟前发布的。这是我在代码中使用的行。我在Ubuntu机器上编程。
<span am-time-ago="story.created_utc"></span>
答案 0 :(得分:2)
我将代码编辑到了
中interface IEmailSender
{
void SendEmail();
}
public class EmailSender : IEmailSender
{
public void SendEmail()
{
throw new NotImplementedException();
}
public void DoOtherStuff()
{
throw new NotImplementedException();
}
}