iOS - iPhone 应充当 REST 服务器
我想在 iOS 上实现类似服务器的行为。对于混合应用程序(部分本机/部分网络)中的内部通信,我想将数据从本机后端提供给基于 JavaScript 的前端。 我正在考虑 REST 解决方案。做了一些谷歌基础工作,我发现了许多适用于 iOS 的 HTTP 服务器,例如 mongoose 等。
有人实现了 REST 服务器或类似的东西吗?我正在这里寻找一个好的起点。
提前致谢 克里斯
I'd like to implement a server like behaviour on iOS. For internal communication in a hybrid app (partly native/partly web), I'd like to serve Data from the native backend to the JavaScript based front-end.
I was thinking about a REST solution. Doing some google ground work, I found many HTTP-Servers for iOS like mongoose etc.
Has anybody implemented a REST-Server or something like this? I'm looking for a good starting point here.
Thank in advance
Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 REST 套件与 CocoaHTTPServer.它运作得很好。另外,您还可以通过 Bonjour 在 LAN 中宣布您的服务。
在 Android 上,我们将 i-Jetty 和常规 Java servlet 与 FlexJSON。这非常有效。我们在低预算设备上使用它,没有出现任何问题。
You can use the REST kit in combination with CocoaHTTPServer. It works quite well. Plus you can announce your service in the LAN via Bonjour.
On Android we are using i-Jetty and regular Java servlets in combination with FlexJSON. That works very well. We used this on low-budget devices and had no problem.