Cohelad
Cohelad

Reputation: 121

How to push in to array on quickblox customobject?

i want to ubdate array field by using "push" to Append specified values to array. but i didnt understand how to do it.

i try to use 'push' but this is not the way:

QBCustomObject co = new QBCustomObject();
            co.setClassName("image");
            HashMap<String, Object> fields = new HashMap<String, Object>();
            fields.push("array", newComment);
            co.setFields(fields);
            co.setCustomObjectId(ID);

            QBCustomObjects.updateObject(co, new QBCallbackImpl() {
                @Override
                public void onComplete(Result result) {
                    if (result.isSuccess()) {
                        QBCustomObjectResult updateResult = (QBCustomObjectResult) result;
                        QBCustomObject qbCustomObject = updateResult.getCustomObject();
                        Log.d("Updated record: ",qbCustomObject.toString());
                    } else {
                        Log.e("Errors",result.getErrors().toString());
                    }
                }
            });

Upvotes: 1

Views: 146

Answers (1)

Rubycon
Rubycon

Reputation: 18346

Try this

fields.put("push[tags][]", "man");
record.setFields(fields);

Push 'man' string to array field with name 'tags'

Upvotes: 2

Related Questions