使用 Restkit 中的 RKObjectManager 在 https 和 http 之间切换的最佳方式是什么?
在 RKObjectManager 的 http 和 https 基本 url 之间切换的最佳方法是什么。我是否应该将共享管理器设置为 http 基本 url,然后为 https 请求新建一个全新实例或 RKOjbectManager?有什么我应该担心的陷阱或陷阱吗?
What's the best way to switch between having a http and https base url for RKObjectManager. Should I let the shared manager be set to the http base url and then new up a whole new instance or RKOjbectManager for https requests? Are there any pitfalls or gotchas I should be worried about?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我做了同样的事情 - 我保留了 RKObjectManager 的三个实例(http、https 和第三个具有不同的 baseUrl 的实例,用于与旧版 API 的某些部分进行交互),它的工作方式就像一个魅力。
I did just the same thing - i keep three instances of the RKObjectManager (http, https and the third one with different baseUrl to interface with some portions of legacy API) and it works like a charm.