当我加载页面时,一切正常,但是:为什么动量不更新时间?
如果我插入了一个新的帖子,就不会用一分钟前的时间更新几秒钟前的文本。
这就是我要做的。
我添加了momentjs:moment
包
注册帮工
UI.registerHelper('timeAgo', function(datetime) {
return moment(datetime).fromNow();
});
在模板中
<template name="postItem">
<li>
{{text}} - {{timeAgo createdAt}}
</li>
{{/if}}
</template>
输出是
Hi! - a few seconds ago
Hello! - 23 minutes ago
发布于 2014-12-28 21:26:54
日期不是一个反应变量,所以当时差改变时它不会刷新。
您可以通过强制它每分钟(或自定义间隔)重新计算来使其具有反应性:
UI.registerHelper('timeAgo', function(datetime) {
Session.get('time');
return moment(datetime).fromNow();
});
setInterval(function() {
Session.set("time", new Date())
}, 60000); //Every minute
这将迫使助手每分钟重新绘制时间值。
发布于 2014-12-28 07:08:33
从docs http://docs.meteor.com/#/full/reactivity
以下仅为反应性源
These Meteor functions run your code as a reactive computation:
Templates
Tracker.autorun
Blaze.render and Blaze.renderWithData
And the reactive data sources that can trigger changes are:
Session variables
Database queries on Collections
Meteor.status
The ready() method on a subscription handle
Meteor.user
Meteor.userId
Meteor.loggingIn
In addition, the following functions which return an object with a stop method, if called from a reactive computation, are stopped when the computation is rerun or stopped:
Tracker.autorun (nested)
Meteor.subscribe
observe() and observeChanges() on cursors
在您的示例中,您只是显示值(日期),
这就像显示某个名称--就是这样--您没有显示反应源,
如果显示反应性源,则当值更改时,它将自动更改。
如果您想创建自己的反应性源,请参阅此处pkg
编辑
找到解决之道
试试这个包https://atmospherejs.com/copleykj/livestamp
不过我还没亲自用过呢。试试看。
发布于 2014-12-28 07:43:43
你需要了解反应是如何工作的。没有反应值的变化,所以没有重新计算。最简单的解决办法是使时间反应。见以下答案:How can i accomplish reactive dates
https://stackoverflow.com/questions/27677470
复制相似问题