<div>{{2018-04-16T05:56:45.200Z | amTimeAgo}}</div>
上面给出了我作为1 minutes ago
一分钟后的结果,但我希望结果为1 mins ago
如何使用angular2-moment npm模块实现这一目标?
我必须仅使用此模块来完成结果。链接提供here
答案 0 :(得分:1)
阅读code of the pipe后,您可以看到它调用了时刻构造函数,moment documentation中描述了from()
方法。
在进一步挖掘如何设置使用过的字符串后,我发现了这个configuration object in the documentation。有了这些知识,我尝试find something设置此属性,将我带到open issue。因此,似乎在临时解决方案中你可以(也许)使用。还有一个try to solve this problem。
但它似乎需要某种抛光(将位置参数移动到对象属性)。也许你可以接受这份工作并改进代码?