如何更新Parse.com用户表中的值

时间:2015-08-19 08:45:28

标签: android parse-platform

伙计我想更新Parse.com中的用户表行。所以,到目前为止,我已经使用user.SignupinBackground方法来更新密码和其他字段(由我添加而不是用户名和密码),但它会抛出异常“无法注册已注册的用户”。

有没有办法更新用户行表中的数据解析表。

我已经访问过this link,但我没有找到更新当前用户行数据的方法。

1 个答案:

答案 0 :(得分:2)

您可以通过此代码实现

private void button_Click(object sender, RoutedEventArgs e)
{
    Choice win2 = new Choice(this);
    win2.Show();
}


public partial class Choice : Window
{
    Prepare parent;

    public Choice(Prepare parent)
    {
        this.parent = parent;
    }

    private void button1_Click(object sender, RoutedEventArgs e)
    {
        parent.DoStuff();
        this.Close();
    }
}