问题描述
我的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 (将#修改为@)