如何解决云代码解析执行了几次-I / O故障
我的Android应用中的云代码(解析)有问题。
根据sashido上的登录,尽管应该只执行一次,但是云代码执行了几次(在几分钟的时间内大约执行了五次)。在androidstudio中,我收到一条错误消息。
云代码:
patchwork_plots <- Reduce(`+`,plots)
patchwork_plots +
plot_layout(ncol=2)
Java代码:
Parse.Cloud.define("incrementUserMinusOne",function(request,response) {
const User = new Parse.User();
const query = new Parse.Query(User);
// Finds the user by its ID
query.get(request.params.userId).then((user) => {
// Updates the data we want
user.increment('points',-1);
// Saves the user with the updated data
user.save(null,{useMasterKey: true })
.then((response) => {
console.info("incrementUserMinusOne " +
request.params.userId);
})
.catch((error) => {
console.error("incrementUserMinusOne " +
request.params.userId + error);
});
});
});
在androidstudio上记录消息
HashMap<String,Object> params2 = new HashMap<String,Object>();
params2.put("userId",stringImageUserId);
ParseCloud.callFunctionInBackground(
"incrementUserPlusThreeTwo",params2,new FunctionCallback<Float>() {
@Override
public void done(Float object,ParseException e) {
if (e == null) {
} else {
e.printstacktrace();
}
}
}
);
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。