gpt4 book ai didi

javascript - 通过在前端单击来停止 Node.js 中的功能

转载 作者:行者123 更新时间:2023-12-01 02:28:22 24 4
gpt4 key购买 nike

有一个循环可以优化后端的某些内容,我希望它永远持续下去,直到我按下前端的停止按钮。

到目前为止我的(简化的)代码:
按下按钮时调用此函数

function optimize() {    
$.ajax({
type: 'GET',
url: '/optimize',
success: function (data) {
updatePlot(data);
},
});
}

在后端:

let optimizingFunction = {};

router.get('/optimize', function (req, res) {
optimizeFunction(); //This goes on for a long time...
res.send(optimizingFunction);
});

function optimizeFunction(){
while(true){
let betterFunction = {};
//...
optimizingFunction = betterFunction;
}
}

那么现在如何在按下另一个按钮时停止此函数并获取当前的 optimizationFunction 值? - 我试过:单击停止按钮

function stop() {    
$.ajax({
type: 'GET',
url: '/stop'
});
}

后端:

router.get('/stop', function (req, res) {
process.exit(1);
});

我注意到它实际上执行了停止函数,但在执行第一个函数之后......
解决此类问题的简单“最佳实践”方法是什么?

最佳答案

因此,有很多不同的方法可以解决这个问题。根据您的示例,最简单的方法可能是使用 setTimeout 而不是循环,然后在决定重置超时之前测试某种变量。像这样的东西(未经测试):

const app = express(); 

function process() {
// do work
if(app.enabled('continue work')) {
setTimeout(process, 1000); // run every second. Could set that to smaller intervals
}
}

app.get('/start', (req, res) => {
app.enable('continue work');
process();
res.sendStatus(200);
});

app.get('/stop', (req, res) => {
app.disable('continue work');
res.sendStatus(200);
});

但请注意,这不是最理想的,而且可扩展性不太好。更好的解决方案是使用某种工作队列或数据库。此外,您通常不想使用 GET 请求更改应用程序状态,而是使用 POST 或 PUT。

在此处添加更传统的 HTTP 模式来完成此类工作:

const app = express(); 
const currentState = {}; // this *really* should be in a database for any nontrivial application.

function process() {
// do work to add properties & values to currentState
if(app.enabled('continue work')) {
setTimeout(process, 1000); // run every second. Could set that to smaller intervals
}
}

app.post('/start', (req, res) => {
app.enable('continue work');
process();
res.sendStatus(200);
});

app.get('/state', (req, res) => {
res.send({ state: currentState, processing: app.get('continue work') });
});

app.post('/stop', (req, res) => {
app.disable('continue work');
res.send(currentState);
});

请注意,很多人不喜欢将 URL 作为“操作”(开始、停止等),但这主要是偏好。如果您关心的话,请查看有关 REST API 的文章,了解该方法是什么样的。

关于javascript - 通过在前端单击来停止 Node.js 中的功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48530153/

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