我們正在從關係表讀取數據時遇到問題。我們有table1,它的一列中有一個指向另一個表的指針,叫table2。我們需要從table1的指針中獲取table2中的數據,並將其放入一個查詢請求中。在Parse中使用指針獲取關係數據
因此,查詢現在的問題是:
PFQuery *query = [PFQuery queryWithClassName:@"table1"];
[query whereKey:@"completed" equalTo:[NSNumber numberWithBool:NO]];
[query whereKey:@"userId" equalTo:[PFObject objectWithoutDataWithClassName:@"Users" objectId:@"someID"]];
[query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error)
{
if (!error)
{
//new user
if(objects.count==0)
{
}
else
{
//here we get "Users:vAJS2T96V1" ,which is the pointer to table2 ,but we need to go deeper to the other table
// in the same query, and get the data from table2 .
}
}
}];
我們如何從表2得到的數據,在一個查詢?
你最近怎麼樣?你有沒有進一步? – Moonwalkr
你解決了這個問題嗎? – Steve