有没有办法从具有PFFile指针(照片)的类中获取数据?
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提出请求了吗?
答案 0 :(得分:1)
PFFile
引用与指针不同,它是对文件的显式引用。指针是对Parse数据存储中对象的引用(对象id的引用)。 includeKey
只能用于获取响应中的其他对象,而不是原始文件数据。
获得Person
之后,您需要获取PFFile
,然后请求获取文件数据(使用getDataInBackgroundWithBlock:
之类的方法之一)。