是否有人已经尝试在不使用包含的(并且很酷的)GCDWebUploader 的情况下为 GET 请求(POST 方法的相同问题)实现处理程序?
我需要服务器响应http://local/download/filename.ext
将文件上传到客户端的 GET 请求。
我使请求符合代码“BackgroundSessionManager”(可在此处获得:AFNetworking 2.0 和后台传输),它被发送并触发,不用担心。
我得到服务器端的日志是这样的:
[DEBUG] Did start background task
[DEBUG] Connection received 248 bytes on socket 14
[DEBUG] Connection on socket 14 preflighting request "GET /download/file.ext with 248 bytes body
[DEBUG] Connection on socket 14 processing request "GET /download/file.ext" with 248 bytes body
[EXCEPTION] *** +[NSJSONSerialization dataWithJSONObject:options:error:]: value parameter is nil
[DEBUG] Did close connection on socket 14
我无法弄清楚如何设置处理程序以便不关心从 JSON 解析的不存在的查询。
[webServer addHandlerForMethod:@"GET" path:@"/download" requestClass:[GCDWebServerRequest class] processBlock:^GCDWebServerResponse *(GCDWebServerRequest* request) {
__strong AppDelegate* strongSelf = weakSelf;
NSLog(@"request for download is %@", request);
return [strongSelf downloadFile:request];
}];