我正在使用parse.com开发一个应用程序,在我的安装类中,我想保存一个用户的objectid。我尝试了这段代码,但“currentuser.set”类型未定义。

ParseInstallation currentInstall = ParseInstallation.getCurrentInstallation();
currentInstall.set("User",ParseUser.getCurrentUser());
currentInstall.saveInBackground();

我如何编码?

最佳答案

如果要在ParseInstallation对象上设置对象,则需要使用“put”,而不是“set”。
并且ParseUser.getCurrentUser()返回用户对象,而不是objectid。

10-06 02:31