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

前端之家收集整理的这篇文章主要介绍了如何使用Javascript SDK调用带参数的云代码函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道在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
});
原文链接:https://www.f2er.com/js/159675.html

猜你在找的JavaScript相关文章