Я начинаю использовать облачную функцию в приложении iOS / Parse-сервера.
Вот код swift в клиентском приложении:
PFCloud.callFunction(inBackground: "myCloudFunction",
withParameters: ["unitID": theObject.objectID,
"userID": PFUser.current()!.objectId!]) {
[weak self] (object: Any?, error: Error?) in
if error != nil {
if error?.localizedDescription == "NOTHING"
{print("The given object has not been found. This should not happen.")}
else {
print("Error in \(#function)\n" + (error?.localizedDescription)!)
print("object = \(String(describing: object))")
}
return
}
.........
}
проблема в том, что внутри этой функции, похоже, есть проблема:
+ (NSMutableURLRequest *)urlRequestWithURL:(NSURL *)url
httpMethod:(NSString *)httpMethod
httpHeaders:(NSDictionary *)httpHeaders
parameters:(NSDictionary *)parameters {
.......
}
По этой инструкции:
request.HTTPBody = [NSJSONSerialization
dataWithJSONObject:parameters
options:(NSJSONWritingOptions)0
error:&error];
Я понятия не имею, в чем проблема, но я предполагаю, что использую какой-то неправильный синтаксис в коде:
PFCloud.callFunction(inBackground: "myCloudFunction",
withParameters: ["unitID": theObject.objectID,
"userID": PFUser.current()!.objectId!]) ...
Любой соответствующий совет будет очень полезен.
На всякий случай, если он может быть полезен, вот функция облака разбора:
Parse.Cloud.define
("myCloudFunction", function(request, response) {
var theQuery;
theQuery = new Parse.Query("TheCoud_List");
theQuery.equalTo("objectId", request.params.unitID);
theQuery.equalTo("owner", request.params.userID);
theQuery.find().then
(function(resUnit) {
// If there is no UNIT we return an error.
if (!resUnit.length) response.error("NO-UNIT");
else response.success('ALL-OK');
});
});
И вот что я вижу в окне отладки на стороне iOS:
2020-02-25 ... MyApp[13018:2024085] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Invalid type in JSON write (_NSCoreDataTaggedObjectID)'
*** First throw call stack:
(0x19ba47180 0x19ac1f9f8 ... 0x19b668cd4)
libc++abi.dylib: terminating with uncaught exception of type NSException