gpt4 book ai didi

javascript - 如何使用 Javascript SDK 调用带有参数的云代码函数

转载 作者:数据小太阳 更新时间:2023-10-29 04:29:52 24 4
gpt4 key购买 nike

我知道在 iOS sdk 中我可以这样做

[PFCloud callFunctionInBackground:@"email" withParameters:@{@"param1": @"quantity1, @"param2": @"quantity2} block:^(NSString *result, NSError *error) {
if (error) {
//error
} else {
// make sure the set the email sent flag on the object
NSLog(@"result :%@", result);
}
}];

但是我如何使用 Javascript 函数做到这一点

最佳答案

Parse.Cloud 实现 run()...

Parse.Cloud.run("email", { param1:"quantity1", param2:"quantity2" }).then(function(result) {
// make sure the set the email sent flag on the object
console.log("result :" + JSON.stringify(result))
}, function(error) {
// error
});

关于javascript - 如何使用 Javascript SDK 调用带有参数的云代码函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32385512/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com