Parse.com包括与PFFile的密钥

时间:2015-01-04 14:32:12

标签: objective-c swift parse-platform

有没有办法从具有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提出请求了吗?

1 个答案:

答案 0 :(得分:1)

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

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