作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试为我正在处理的项目添加一些常规应用程序配置,我决定将其保存在数据库中,以便如果应用程序出现问题,我可以从其他地方更改它们,这是主要原因我这样做是为了在每当我对应用程序进行更改或在部署期间或类似的事情时添加“维护模式”,我尝试执行此操作的方法是使用我使用以下代码设置的变量:
Meteor.startup(function() {
Tracker.autorun(function () {
Meteor.subscribe('configuracion', function(){
configuracionGeneral = Configuracion.findOne({});
})
});
});
但是,当我尝试将它与铁路由器一起使用时:
Router.onBeforeAction(function () {
console.log(configuracionGeneral);
if(configuracionGeneral.vynoHabilitado=='habilitado'){
this.next();
}else{
//Send to maintenance template
}
});
我可以毫无问题地使用变量 configuracionGeneral,并且我在控制台上看到它,但是当我在数据库上更改它的值时,该变量不会“主动”更改,所以我想知道如何才能“ react 性”更改此变量。
最佳答案
我认为问题在于,according to the docs :
if the next iteration of your run function subscribes to the same record set (same name and parameters), Meteor is smart enough to skip a wasteful unsubscribe/resubscribe.
因此,您的订阅不会重新运行,并且您的回调也不会被触发。您可以尝试使用此方法,来自 David Weldon 的 common mistakes :
Meteor.startup(function() {
var handle = Meteor.subscribe('configuracion');
Tracker.autorun(function () {
if (handle.ready())
configuracionGeneral = Configuracion.findOne();
});
});
关于javascript - 如何从 ‘Meteor startup’ 响应式更新变量的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32323457/
我是一名优秀的程序员,十分优秀!