如何在没有帐户但仍知道哪个电话上载内容的情况下使用Parse来保存用户的数据?例如,如果用户上传图像,我如何仅向上传图像的人显示该图像-全部而不需要用户创建帐户?

在此先感谢您的帮助/指导!

最佳答案

您可以在数据浏览器中使用“安装”表:

func application(application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: NSData) {
  // Store the deviceToken in the current Installation and save it to Parse
  let installation = PFInstallation.currentInstallation()
  installation.setDeviceTokenFromData(deviceToken)
  installation.saveInBackground()
}


这就是将安装链接到设备的方式。然后,您可以在自己的数据浏览器的Installation表中添加一个自定义列,例如File或图像数组,无论哪种方法都适用。

关于swift - 如何在没有帐户的情况下将数据保存/检索给用户(Parse + Swift),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31665578/

10-11 23:34