如果互联网不可用,Android 队列服务器是否会请求?
如果互联网不可用,Android 队列服务器是否会请求?
在我的应用程序中,用户填写表单,然后将表单发送到 .asp 表单接收器,该接收器获取信息并对其进行排序。现在,如果没有互联网,这种情况就不会发生,是否有办法对服务器请求进行排队,以便在用户下次有互联网连接时发送?
Does Android Queue Server Requests if internet is not available?
In my app the user fills out a former and the form then is sent to a .asp form receiver which takes the information and sorts it. Now if there is no internet this can not happen, is there a way to queue the server request , so it will send the next time the user has an internet connection?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不。
编写一个队列,也许使用文件作为后备存储。您可以通过
ConnectivityManager
监控连接状态。No.
Write a queue, perhaps using a file as your backing store. You can monitor the state of connectivity via the
ConnectivityManager
.