我正在尝试从我的 iOS 应用程序将序列化对象发送到 Web 服务器,并且通常一切正常。我试过发送一个巨大的字符串,它在服务器上就很好了。但是当我将序列化对象发送到服务器时,字符串会被切断。我已经从我的应用程序中记录了字符串 - 它就在那里。我尝试将相同的字符串写入我的 Web 服务器上的文件,但它以最奇怪的方式被切断。
可能是什么原因?我怀疑这与编码有关。这是我将数据发送到服务器的方式:
+ (void)postRequestWithData:(id)data toURL:(NSURL *)url {
// Prepare data
NSData *postData = [NSJSONSerialization dataWithJSONObject:data options:NSJSONWritingPrettyPrinted error:nil];
NSString *postDataString = [[NSString alloc] initWithData:postData encoding:NSUTF8StringEncoding];
NSString *requestString = [NSString stringWithFormat:@"sales=%@", postDataString];
NSString *postLength = [NSString stringWithFormat:@"%d", [requestString length]];
// Make the request
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setURL:url];
[request setHTTPMethod:@"POST"];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:[requestString dataUsingEncoding:NSUTF8StringEncoding allowLossyConversion:YES]];
NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
// Error reporting
if (!connection) {
NSLog(@"Could not make a connection!");
}
}
其中 (id)data 是一个字典数组。
这是我在服务器中处理它的方式:
<?php
$sales = $_POST['sales'];
$myFile = "testFile.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
fwrite($fh, $sales);
fclose($fh);
?>