尝试在 NodeJS 上使用 PFUser

Trying to use PFUser on NodeJS

我一直在使用标准 PFUser class 为 iOS 应用程序的用户创建用户帐户以登录到 Parse-Server。

现在我不想再在 iOS 应用程序中使用此用户处理功能,而是在 Web 应用程序(准确地说是 NodeJS)中使用。我在想我可以只使用相同类型的方法(显然在 Javascript 中编码)。但这似乎并没有那么简单。 有没有什么方向可以看,得到我想要的?

我已经开始查看一些教程并阅读了一些文档,但此时还不能正常工作。

例如,mongodb,我尝试使用:

db.createUser();
(https://docs.mongodb.com/manual/reference/method/db.createUser/)

但我总是得到这个错误:

TypeError: db.createUser is not a function

您可以在 Parse JS Guide 中了解有关 JS SDK 的更多信息。说到创建用户,应该是这样的:

var user = new Parse.User();
user.set("username", "my name");
user.set("password", "my pass");
user.set("email", "email@example.com");

// other fields can be set just like with Parse.Object
user.set("phone", "415-392-0202");
try {
  await user.signUp();
  // Hooray! Let them use the app now.
} catch (error) {
  // Show the error message somewhere and let the user try again.
  alert("Error: " + error.code + " " + error.message);
}