iOS/Parse-server アプリで Cloud-Function を使い始めています。
クライアントアプリの迅速なコードは次のとおりです。
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