gpt4 book ai didi

meteor - 单击按钮时多次调用 meteor 中的服务器方法

转载 作者:行者123 更新时间:2023-12-02 04:43:15 25 4
gpt4 key购买 nike

单击按钮时,将调用服务器方法。当用户在服务器方法完成之前再次单击按钮时,我想终止服务器方法的执行并重新启动。

客户端代码:

Meteor.call('getData');

服务器方法:

getData:function(){ 
this.unblock();
// Long running operation
}

最佳答案

在客户端使用异步方法调用。设置一个变量来存储方法调用状态。在回调函数中,你只需要设置一个变量来告诉方法调用已经结束。因此,仅当状态结束 (false) 时才会有新调用进入。

var methodCallIsRunning = false;

if(methodCallIsRunning)
return;

Meteor.call('getData', function(err, result){
methodCallIsRunning = false;
});
methodCallIsRunning = true;

关于meteor - 单击按钮时多次调用 meteor 中的服务器方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35611239/

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