如何设置两个js函数之间的延迟?

发布于 2024-11-03 11:48:32 字数 340 浏览 0 评论 0原文

我有以下 js 代码:

clientData.reloadTable( "CreateCSV", "/create/file" );
$("#downloadFrame").attr("src","/download/download");

在上面的代码中。第一条语句是在磁盘上创建一个 csv 文件。第二条语句正在下载它(由于使用 AJAX 请求时出错,因此使用 iframe 下载文件)。它正在下载文件,但包含以前的内容。这意味着它会提示我在完成更新该文件之前下载文件。

如何强制我的第二个nd 语句在第一个语句完成其工作之前不执行?

谢谢

I have following js code:

clientData.reloadTable( "CreateCSV", "/create/file" );
$("#downloadFrame").attr("src","/download/download");

In above code. first statement is creating an csv file on disk. And 2nd statement is downloading it(Using iframe to download file because of error when using AJAX request ). It is downloading file but with previous content. It means that it prompts me to download file before it finish updating that file.

How can I force my 2nd statement to not execute before 1st statement finished its work??

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

莫言歌 2024-11-10 11:48:32

在 Javascript 中执行此类操作的最佳方法是使用回调函数。

如果可以更改 reloadTable 函数,使得 >

var callback = function () { $("#downloadFrame").attr("src", "/download/download") }

clientData.reloadTable("CreateCSV", "create/file", callback);

然后在 reloadTable 函数中,一切完成后调用回调函数。

这就是 Javascript 的真正魅力。


否则,如果您知道 reloadTable 需要多长时间,也可以使用 setTimeout() 。

例如,如果需要 1 秒。要完成,您可以>

clientData.reloadTable( "CreateCSV", "create/file" );
var func = function () { $("#downloadFrame").attr("src","/download/download");}
setTimeout(func, 1000);

The best way to do something like this in Javascript is to use callback functions.

If it is possible to change the reloadTable function such that >

var callback = function () { $("#downloadFrame").attr("src", "/download/download") }

clientData.reloadTable("CreateCSV", "create/file", callback);

and then inside the reloadTable function, call the callback function once everything is done.

This is the true beauty of Javascript.


Otherwise you can also use setTimeout() if you have an idea how much time the reloadTable takes.

e.g. if it is to take 1 second. to complete, you can >

clientData.reloadTable( "CreateCSV", "create/file" );
var func = function () { $("#downloadFrame").attr("src","/download/download");}
setTimeout(func, 1000);
海的爱人是光 2024-11-10 11:48:32

听起来不是很稳健。但无论如何:

function start() {
  doFirstThing();
  setTimeout('doSecondThing();', 1000); // execute the secondthing in 1000 ms
}

function doSecondThing() {
...
}

It doesn't sound very robust. But anyway:

function start() {
  doFirstThing();
  setTimeout('doSecondThing();', 1000); // execute the secondthing in 1000 ms
}

function doSecondThing() {
...
}
小忆控 2024-11-10 11:48:32
clientData.reloadTable( "CreateCSV", "/create/file" );

如果是ajax调用。从回调中调用您的下载函数。

clientData.reloadTable( "CreateCSV", "/create/file" );

if it's an ajax call. call your download function from it's callback.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文