gpt4 book ai didi

json - 在 Express.js 中的某个时间间隔后刷新变量

转载 作者:太空宇宙 更新时间:2023-11-04 01:06:55 24 4
gpt4 key购买 nike

如何从外部 json 文件定期获取 Express.js 中的值?

最佳答案

这是非常模糊的,但是您可以做的是设置一个定期执行并从 JSON 文件中获取值的函数。

// Fetch values every 3 seconeds
setInterval(function(){

var fs = require('fs');
var file = __dirname + '/test.json';

fs.readFile(file, 'utf8', function (err, data) {
if (err) {
console.log('Error: ' + err);
return;
}

data = JSON.parse(data);

// Now you have a JSON object from which you can extract values.
// You can save those values somewhere or just log them to the console
console.dir(data);
});

}, 3000);

关于json - 在 Express.js 中的某个时间间隔后刷新变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22160223/

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