Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
本文の形式でリクエストを投稿する必要があります。
username=<(何らかのユーザー名)>&password=<(何らかのパスワード)>
応答文字列は JSON 形式です。
しかし、オブジェクト マッピングを作成すると、本文の文字列は次のようになります。
{"username":"<(何らかのユーザー名)>","password":<(何らかのパスワード)>}
リクエストボディのフォーマットを変更する方法はありますか?
ありがとう!
私はちょうどそれを理解しました:
RKObjectManager *manager = [RKObjectManager managerWithBaseURLString:[MyClass baseURL]]; RKObjectLoader *loader = [manager loaderWithResourcePath:[MyClass pathForLogin]]; [loader setHTTPBodyString:@"..."];