10

我正在为我的应用程序使用Parse。我想查询一个表,其列设置为指向其他表的指针。这是查询:

ParseQuery query = new ParseQuery("CategoryAttribute");
        query.whereEqualTo("categoryId", categoryId);
        query.findInBackground(new FindCallback() {
            @Override
            public void done(List<ParseObject> categoryAttributes, ParseException e) {
                if (e == null) {
                    for (int i = 0; i < categoryAttributes.size(); i++){
                        String atributeCategoryId = categoryAttributes.get(i).getString("categoryId");
                        String attributeKey  = categoryAttributes.get(i).getString("attributeKey");
                        String attributeValue   = categoryAttributes.get(i).getString("attributeValue");

                        setCategoryAtributeRow(atributeCategoryId, attributeKey, attributeValue);
                    }
                } else {
                    Log.d("score", "Error: " + e.getMessage());
                }
            }
        });

所以该categoryId列是指向其他表的指针。其他列工作正常。我试图扫描 API 和指南,但找不到所需的解决方案。帮助将不胜感激!

4

3 回答 3

13

这是解决此问题的方法:

首先,您需要ParseObject从表的类型创建一个:

ParseObject sale = ParseObject.createParseObject("Sale"); 

然后你需要ParseObject从结果中得到:

sale = result.getParseObject(pointer_field);

现在您可以像往常一样从它拥有的任何字段中提取数据sale,例如:

sale.getString("some_field")

注意: 当您进行查询时,如果您希望能够在查询返回后从中提取数据,则必须包含指针字段。结果:

query.include("pointer_field")

希望能帮助到你

于 2013-06-06T06:07:35.023 回答
4

@Akshat Agarwal,这是 JavaScript 中的一个示例:

var parseObj = Parse.Object.extend('parseObj');

new Parse.Query(parseObj)
  .include('pointerField')
  .find(function (data) {
    data.get('pointerField').get('fieldName');
  });
于 2014-03-04T19:08:12.267 回答
0

对于 iOS

  PFQuery *parseQuery = [PFQuery queryWithClassName:@"MyClass"];
  [parseQuery whereKey:@"categoryId" equalTo:categoryId];
  [parseQuery includeKey:@"pinter_field"];
  [parseQuery findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
  //
  }];
于 2014-12-29T12:01:04.157 回答