我在服务器上注册设备数据,以获得推送通知。这是代码,
[NSURLConnection sendAsynchronousRequest: request
queue: _postQueue
completionHandler: ^(NSURLResponse *response, NSData *responseData, NSError *connectionError) {
if (connectionError) {
//
} else {
NSError *error = nil;
NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData: responseData options: NSJSONReadingMutableContainers error: &error];
}
}];
我收到错误
Error Domain=NSCocoaErrorDomain Code=3840 "The operation couldn’t be completed. (Cocoa error 3840.)" (JSON text did not start with array or object and option to allow fragments not set.) UserInfo=0x17057f60 {NSDebugDescription=JSON text did not start with array or object and option to allow fragments not set.}
有人可以帮忙解决问题吗?
答案 0 :(得分:5)
错误消息告诉您确切的错误:服务器的响应不包含有效的JSON。从技术上讲,JSON必须以数组或对象(字典)开头。无论您的服务器返回什么,都不是。无论使用NSJSONReadingAllowFragments
选项,都可以强制使用JSON。
如果在使用该选项后,您仍然仍然收到错误,那么您的服务器可能会返回格式错误的JSON(或根本没有JSON)。为什么不从服务器上查看日志以确切了解您要发回的内容?
答案 1 :(得分:0)
我遇到了同样的问题,看看我在这里所做的事情
我将json解析方法更改为
let decodedApps = try JSONDecoder().decode(class.self, from: data!)
here类包含json数据密钥中存在的所有密钥 现在您可以将decodedApps用作包含键值对的字典..... 可能会有帮助