如何使页面继续加载文件(.txt),即使它还不存在?
我想加载一个尚不存在的txt文件。我的意思是我将从服务器获得待处理状态。当 txt 文件存在时,页面只会从服务器获得响应 200 状态。或者没有办法做到这一点?
I want to load a txt file which is not there yet. I mean I'll get a pending status from server. And the page will only get respond 200 status from server when the txt file is there. Or there is no way to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我们谈论远程服务器,您应该使用 cURL,并每隔几秒“加载”文件,如果字符串为空,则意味着没有文件。
这应该被异步检查。
If we are talking about remote server, you should use cURL, and "load" file every couple of seconds, if string is empty, means there is no file.
This should be checked async.