作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Parse Cloud Code 中使用 Stripe 并收到一个 Stripe ID(字符串),但我想将该 Stripe ID 发送回 Xcode。这样做的最佳方法是什么?
我尝试首先将 strip ID 发送到 Parse,然后在 Xcode 中我进行提取...但我认为这是一个坏主意,因为如果有多个用户同时处理付款,则很难为用户获得正确的 strip ID。
最佳答案
To return data from cloud code, take a look at this tutorial post .
基本上你所要做的就是像这样返回 strip id
response.success(stripeId);
Receiving data looks like this :
[PFCloud callFunctionInBackground:@"averageStars" withParameters:params block:^(NSString *stripeId, NSError *error) {
if (!error) {
// code
}
}];
关于ios - 从云代码发回数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34457504/
我是一名优秀的程序员,十分优秀!