我在Android中有这个代码:
ParseUser user = new ParseUser();
user.setUsername(email.getText().toString().trim());
user.setPassword(password.getText().toString().trim());
user.setEmail(email.getText().toString().trim());
user.pinInBackground();
user.saveInBackground();
ParseObject UserProfile = new ParseObject("UserProfile");
UserProfile.put("Name", name.getText().toString().trim());
UserProfile.put("UserMobile", mobile.getText().toString().trim());
UserProfile.saveInBackground();
UserProfile.pinInBackground();
此代码工作正常,但我如何从Parse类UserProfile获取数据以及如何将ParseUser与UserProfile联系起来?
由于
答案 0 :(得分:0)
只需创建一个'指针'用户表中的字段。 在此之后,您可以在用户表中放置指向配置文件的指针
user.put(userprofile)
答案 1 :(得分:0)
您可以使用指针链接两个对象。要做到这一点,只需添加
user.put("CurrentUser",userprofile);
还在表格中创建“CurrentUser”指针字段。
您可以通过以下方式访问userprofile数据:
user.getParseObject("CurrentUser").fetch().get("Name");