最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Angularjs auto refresh momentjs fromnow date value - Stack Overflow

programmeradmin2浏览0评论

I am a new to UI development and i have to develop a page which has a number of posts with creation dates. The creation date is displayed relative to current time like '3 hours from now'

I refereed this link and was able to do that successfully. But i want to refresh the from now value every 30 seconds. How to do this. The author has replied

I would say you would have to take another tac, and add an additional attribute to the scope - let's call it reply.fromNow - and update that value within the controller periodically using the moment library.

But i couldn't make much out of it. Can someone help me out with this thing? Thank you.

I am a new to UI development and i have to develop a page which has a number of posts with creation dates. The creation date is displayed relative to current time like '3 hours from now'

I refereed this link and was able to do that successfully. But i want to refresh the from now value every 30 seconds. How to do this. The author has replied

I would say you would have to take another tac, and add an additional attribute to the scope - let's call it reply.fromNow - and update that value within the controller periodically using the moment library.

But i couldn't make much out of it. Can someone help me out with this thing? Thank you.

Share Improve this question asked Jun 22, 2013 at 19:05 Anirudhan JAnirudhan J 2,0726 gold badges27 silver badges46 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 10

You could put something like this in your controller:

var refreshDates = function() {
    $timeout(refreshDates, 30000);
};
refreshDates();

Basically, it just trigger's a $scope.$apply() every thirty seconds.

Example

I made a wrapper for momentjs https://github./jcamelis/angular-moment

<p moment-interval="5000">{{"2014-05-21T14:25:00Z" | momentFromNow}}</p>

I hope it works for you.

发布评论

评论列表(0)

  1. 暂无评论