当我在Parse后端更改例如bool时,我无法在我的iOS应用程序中检索此值.请参阅以下屏幕截图,其中第一个bool用户对象已手动更改,第二个已从应用程序更改.
第一个不起作用,而一个(从应用程序更改)确实有效.
我正在使用以下代码获取值:
[[PFUser currentUser] objectForKey:@"is_pro"]
在第一种情况下,返回对象始终为nil(我手动更改了bool).
解决方法
在对用户的Parse表进行更改后,请致电
[[PFUser currentUser] fetch]; //synchronous
要么
[[PFUser currentUser] fetchInBackground]; //asynchronous
要么
[[PFUser currentUser] fetchInBackgroundWithBlock:^(PFObject *object,NSError *error) { //asynchronous with completion block
之前
[[PFUser currentUser] objectForKey:@"is_pro"]
获取[PFUser currentUser]对象的更新副本.
注意:refresh
和refreshInBackgroundWithBlock:
现已弃用,已替换为fetch
和fetchInBackgroundWithBlock:
更新:
正如Ryan Kreager在评论中指出的那样,使用fetchIfNeeded
,fetchIfNeededInBackground
或fetchIfNeededInBackgroundWithBlock:
可能更好/更有效,因为他们将在可用时使用本地缓存.