gpt4 book ai didi

javascript - 如何从 ‘Meteor startup’ 响应式更新变量的值

转载 作者:行者123 更新时间:2023-12-02 15:44:24 29 4
gpt4 key购买 nike

我正在尝试为我正在处理的项目添加一些常规应用程序配置,我决定将其保存在数据库中,以便如果应用程序出现问题,我可以从其他地方更改它们,这是主要原因我这样做是为了在每当我对应用程序进行更改或在部署期间或类似的事情时添加“维护模式”,我尝试执行此操作的方法是使用我使用以下代码设置的变量:

 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/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com