如何设置两个js函数之间的延迟?
我有以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 Javascript 中执行此类操作的最佳方法是使用回调函数。
如果可以更改 reloadTable 函数,使得 >
然后在 reloadTable 函数中,一切完成后调用回调函数。
这就是 Javascript 的真正魅力。
否则,如果您知道 reloadTable 需要多长时间,也可以使用 setTimeout() 。
例如,如果需要 1 秒。要完成,您可以>
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 >
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 >
听起来不是很稳健。但无论如何:
It doesn't sound very robust. But anyway:
如果是ajax调用。从回调中调用您的下载函数。
if it's an ajax call. call your download function from it's callback.