嗨,我是 obj-c 的新手。
我在 json 上得到了一些奇怪的结果。我有一个由 NSThread 调用的 json 函数,当我第一次运行我的 json 函数时,它显示了一个结果,但是当第二次调用该函数时,它返回 null。
这是我的 json 函数:
- (void) updatePaxWithBook:(Book*)_book{
NSString* bookCode = _book.bookCode;
NSString* url = [NSString stringWithFormat:@"%@/?book_code=%@", URL_UPDATE_PAX,bookCode];
url = [url stringByReplacingOccurrencesOfString:@" " withString:@"%20"];
JSONDecoder* jDecoder = [[JSONDecoder alloc] init];
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:url]];
NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
jObject = [jDecoder objectWithData:response];
NSString* errCode =@"";
if ([[jObject objectForKey:@"err_code"] isKindOfClass:[NSNumber class]]) {
errCode = [[jObject objectForKey:@"err_code"] stringValue];
} else {
errCode = [jObject objectForKey:@"err_code"];
}
NSLog(@"OUT >> %@",jObject);
NSLog(@"OUT >> %@",errCode);
}
所以当我运行我的第一个 json 时,这是响应:
{ "err_code": 0, "book_code": "1XX1AS", "pax_num": [1,0,0], "pax_name": ["USER NAME"] }
NSLog 显示一些结果:
OUT >> {
"book_code" = 1XX1AS;
"err_code" = 0;
"pax_name" = (
USER NAME
);
"pax_num" = (
1,
0,
0
);}
OUT >> 0
但是当该函数第二次调用时,响应如下:
{ "err_code": 001002, "err_msg": "Validation error: there are no changes on original data." }
和 NSLog 显示一些 null
OUT >> (null)
OUT >> (null)
我的代码有什么问题,我该怎么办?