iOS - RestKit 并向服务器发送发布请求?

发布于 2024-12-03 22:11:35 字数 86 浏览 1 评论 0原文

当我尝试使用 RestKit 发布对象时,出现以下错误。 “无法发送正在加载或在未先重置的情况下加载的请求。”

这是什么意思? 如何重置请求?

When I try to post an object using RestKit I get the following error.
"Cannot send a request that is loading or loaded without resetting it first."

What does it mean?
How can I reset a request?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

婴鹅 2024-12-10 22:11:35

如果不贴出代码,很难说错误在哪里,但是:
_isLoading_isLoaded 设置为 NO 时,会发生此错误。您可以在发送请求之前尝试使用 [myRequest reset]; 重置请求。

Without posting a code, it is hard to say where the error is, but:
This error occurs, when either _isLoading or _isLoaded is set to NO. You could try to reset your request before sending it using [myRequest reset];.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文