美文网首页
LeanCloud更新计数

LeanCloud更新计数

作者: 点滴回忆 | 来源:发表于2016-05-30 17:37 被阅读249次
        final AVObject theTodo = AVObject.createWithoutData("Todo", "564d7031e4b057f4f3006ad1");
        theTodo.put("views", 0);//初始值为 0
        theTodo.saveInBackground(new SaveCallback() {
            @Override
            public void done(AVException e) {
                // 原子增加查看的次数
                theTodo.increment("views");
                theTodo.setFetchWhenSave(true);
                theTodo.saveInBackground();
                // 也可以使用 incrementKey:byAmount: 来给 Number 类型字段累加一个特定数值。
                theTodo.increment("views", 5);
                theTodo.saveInBackground();
                //saveInBackground 调用之后,如果成功的话,对象的计数器字段是当前系统最新值。
            }
        });

    相关文章

      网友评论

          本文标题:LeanCloud更新计数

          本文链接:https://www.haomeiwen.com/subject/ojhcdttx.html