iOS - Safari HTML5 Web Sockets 可以与同一设备上的应用程序通信吗?
是否可以在 mobile safari 中使用 html5 web 套接字与同一设备上的另一个应用程序进行通信?基本上,我想在自定义应用程序中构建一个套接字服务器,并让 mobile safari 中页面上的 javascript 通过 html web 套接字向其发送消息。我对套接字的经验很少,只是想把这个想法扔出去。
Is it possible to use html5 web sockets in mobile safari to communicate with another app on the same device? Basically, I'd like to build a socket server in a custom app and have my javascript on a page in mobile safari send messages to it via html web sockets. I have very little experience with sockets and just thought I'd throw this idea out there.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不——没有后台模式允许本机 iOS 应用程序“合法”保持套接字服务器运行。唯一可以在后台运行的三种模式是“音频”、“VoIP”和“位置”,您的应用程序可能不属于这些类别中的任何一个。
No -- there is no background mode which will allow a native iOS application to "legally" keep a socket server running. The only three modes which can fully run in the background are "audio", "VoIP", and "location", and your application probably wouldn't fall into any of these categories.