iPhoneからサーバーにデータを送信しています。コードは次のとおりです。
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:url]];
[request setShouldCompressRequestBody:YES]; // gzip compression
[request setTimeOutSeconds:60];
[request setPostValue:emailString forKey:@"email"];
[request setPostValue:jsonStr forKey:@"jsonstring"];
[request setPostValue:pwd forKey:@"password"];
[request setDelegate:self];
[request startAsynchronous];
サーバーでこのデータを受信する方法を検索しようとしましたが、助けが見つかりませんでした。req.getParameter() を使用して受け取りますか。はいの場合、パラメーター名は何で、それを解凍して電子メール、jsonstring、パスワードパラメーターを使用する方法。前もって感謝します。