大家好,我正在查看parse.com的示例和文档,但无法弄清楚如何更改解析类的列中存储的值(特别是一个字符串,该字符串是数字,例如列名:ExampleColumn -字符串-5)。例如,我想在单击按钮时执行类似的操作
@Override
public void onClick(View arg0) {
ParseQuery<ParseObject> query = new ParseQuery<ParseObject> ("ExampleClass");
ExampleColumn = ExampleColumn + 1; /* obviously this won't work but it shows exactly what i want to do with the column, so that this would make ExampleColumn = 6 */
}
最佳答案
使用Parse,您不必直接使用列。您使用对象。因此,如果要更改“列”的值,则需要
获取要更改的对象(行)
编辑该对象上的属性
再次保存对象。