gpt4 book ai didi

swift - 如何在signUpInBackground时添加自定义字段: with Parse Server?

转载 作者:行者123 更新时间:2023-11-30 12:30:53 24 4
gpt4 key购买 nike

所以我们知道PFUser有3个字段:用户名、密码和可以注册的电子邮件。但我想从我的用户那里收集更多信息。

如何添加其他字段,例如“年龄”或“位置”?

最佳答案

How can I add other fields then? Like for example, 'Age', or 'Location'?

是的,你可以这样做 Parse SDKs因为 Parse User 是 Parse Object 的子类。

例如在Parse iOS SDK中要添加其他字段,例如“年龄”或“位置”,您可以使用以下方式:

let user = PFUser()
user.username = "toto"
user.password = "Secret password"
user.email = "toto@example.com"
user["Age"] = 20
user["Location"] = PFGeoPoint(latitude: 20, longitude: 20)
user.signUpInBackground()

我不确切知道您想在哪个 SDK 中执行此操作,但您可以在其他 SDK 中调整此示例。如果您想要其他语言的另一个示例,请告诉我

希望我的回答对您有帮助

关于swift - 如何在signUpInBackground时添加自定义字段: with Parse Server?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43570999/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com