我可以在new.Parse.User中添加其他值,例如地址或头发颜色吗?或者仅为用户名,密码,电子邮件和电话保留这些值?
像这样: [使用Javascript]
var user = new Parse.User();
user.set("username", username);
user.set("email", email);
user.set("password", password);
user.set("address", myaddress);
如果不是,你会怎么做呢?您是否需要为新用户创建用户配置文件类?
答案 0 :(得分:1)
The documentation on retrieving objects应该解释一下。
您可以使用set方法添加所需的任何字段。
var user = new Parse.User();
// set the properties of the user
user.set("username", username);
user.set("password", password);
user.set("email", email);
// Create a custom field for the user (there is no limit to the number of custom records)
user.set("score", 0);
// other custom fields could be added like this:
// user.set("user-status", "I am happy");
// user.set("nickname", "super-user");