Parse.com includeKey 与 PFFile

Parse.com includeKey with PFFile

有什么方法可以从具有 PFFile 指针(照片)的 Class 中获取数据?

let query = PFObject(classname: "Person")
query.includeKey("photo")

[Error]: field photo cannot be included because it is not a pointer to another object

所以我不需要在完成第一个请求后向 parse.com 发送另一个请求?

PFFile 引用与指针不同,它是对文件的显式引用。指针是对 Parse 数据存储中对象的引用(对对象 ID 的引用)。 includeKey 只能用于获取响应中的附加对象,不能用于原始文件数据。

获得 Person 后,您需要获得 PFFile,然后请求获取文件数据(使用 getDataInBackgroundWithBlock: 等方法之一)。