如何在没有帐户的情况下向用户保存/检索数据(Parse + Swift)

时间:2015-07-28 00:31:08

标签: swift parse-platform

如何在没有帐户的情况下使用Parse保存用户的数据,但仍然知道哪个手机上传了内容?例如,如果用户上传图像,我如何才能将该图像显示回上传图像的所有人 - 而无需用户创建帐户?

提前感谢任何帮助/指导!

2 个答案:

答案 0 :(得分:0)

如果它都在当前用户会话中,则匿名用户可能会为您工作:https://parse.com/docs/ios/guide#users-anonymous-users

答案 1 :(得分:0)

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

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或图像数组,这些都适用于您。