我正在使用Parse作为我的Android应用程序的后端。我在User Class中创建了两个自定义列。现在我希望我的应用程序用户注册我的应用程序。我无法存储自定义列的用户数据我怎么做的?
答案 0 :(得分:2)
直接来自Parse Docs:
ParseUser user = new ParseUser();
user.setUsername("my name");
user.setPassword("my pass");
user.setEmail("email@example.com");
// other fields can be set just like with ParseObject
user.put("phone", "650-253-0000");
user.signUpInBackground(new SignUpCallback() {
public void done(ParseException e) {
if (e == null) {
// Hooray! Let them use the app now.
} else {
// Sign up didn't succeed. Look at the ParseException
// to figure out what went wrong
}
}
});
我建议你非常彻底地阅读Parse文档 - 你想要对服务做的任何事情都会在文档的某个地方,它们非常好。