11

私はiPhone開発に不慣れです。ユーザー名とパスワードを含むURLを投稿しました。「connectiondidReceiveData」メソッドでデータを出力できますが、「connection didReceiveData」メソッドが2回呼び出されているのがわかります。どこが間違っているのか、わかりません。これが私のコードです

 - (void)viewDidLoad {
[super viewDidLoad];

NSString *post = [NSString stringWithFormat:@"&domain=school.edu&userType=2&referrer=http://apps.school.edu/navigator/index.jsp&username=%@&password=%@",@"xxxxxxx",@"xxxxxx"];

NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];

NSString *postLength = [NSString stringWithFormat:@"%d",[postData length]];

NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];

[request setURL:[NSURL URLWithString:[NSString stringWithFormat:@"https://secure.school.edu/login/process.do"]]];

[request setHTTPMethod:@"POST"];

[request setValue:postLength forHTTPHeaderField:@"Content-Length"];

[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Current-Type"];

[request setHTTPBody:postData];

NSURLConnection *conn = [[NSURLConnection alloc]initWithRequest:request delegate:self];

if(conn)
{
    NSLog(@"Connection Successful");

}
else
{
    NSLog(@"Connection could not be made");
}

    }

 - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData*)data{

NSString *string = [[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding];
NSLog(@"the  data %@",string);
  }

HTMLページ全体がコンソールに2回印刷されますので、助けてください。ありがとうございます。

4

2 に答える 2

14

応答データをチャンクで受け取る場合があります。これが、NSURLConnection のドキュメントに次のように記載されている理由です。

デリゲートは、配信された各データ オブジェクトのコンテンツを連結して、URL 読み込み用の完全なデータを構築する必要があります。」

これには のインスタンスを使用しNSMutableData、メッセージを受信したら完全なデータのみを処理し-connectionDidFinishLoading:ます。

于 2010-03-15T09:39:11.653 に答える
11

MacOS Developer Libraryが述べているように、データがチャンクで受信された場合、connection:didReceiveData を複数回呼び出すことができます。つまり、すべてのチャンクをいくつかの変数に保存し、connectionDidFinishLoading メソッドでデータ処理を行う必要があります。例えば

NSMutableData *receivedData = [[NSMutableData alloc] init];

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
    // Append the new data to receivedData.
    [receivedData appendData:data];
}

- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
    // do something with the data, for example log:
    NSLog(@"data: %@", [[NSString alloc] initWithData:receivedData encoding:NSUTF8StringEncoding]
}
于 2012-06-06T12:03:22.050 に答える