<small id='0krkL'></small><noframes id='0krkL'>

      <legend id='0krkL'><style id='0krkL'><dir id='0krkL'><q id='0krkL'></q></dir></style></legend>

    1. <tfoot id='0krkL'></tfoot>

      • <bdo id='0krkL'></bdo><ul id='0krkL'></ul>
      1. <i id='0krkL'><tr id='0krkL'><dt id='0krkL'><q id='0krkL'><span id='0krkL'><b id='0krkL'><form id='0krkL'><ins id='0krkL'></ins><ul id='0krkL'></ul><sub id='0krkL'></sub></form><legend id='0krkL'></legend><bdo id='0krkL'><pre id='0krkL'><center id='0krkL'></center></pre></bdo></b><th id='0krkL'></th></span></q></dt></tr></i><div id='0krkL'><tfoot id='0krkL'></tfoot><dl id='0krkL'><fieldset id='0krkL'></fieldset></dl></div>

        在objective-c中带有扫描过滤器的dynamodb scanexpress

        时间:2023-08-29

          <bdo id='3uvpw'></bdo><ul id='3uvpw'></ul>

        • <i id='3uvpw'><tr id='3uvpw'><dt id='3uvpw'><q id='3uvpw'><span id='3uvpw'><b id='3uvpw'><form id='3uvpw'><ins id='3uvpw'></ins><ul id='3uvpw'></ul><sub id='3uvpw'></sub></form><legend id='3uvpw'></legend><bdo id='3uvpw'><pre id='3uvpw'><center id='3uvpw'></center></pre></bdo></b><th id='3uvpw'></th></span></q></dt></tr></i><div id='3uvpw'><tfoot id='3uvpw'></tfoot><dl id='3uvpw'><fieldset id='3uvpw'></fieldset></dl></div>

            • <small id='3uvpw'></small><noframes id='3uvpw'>

            • <tfoot id='3uvpw'></tfoot>

              <legend id='3uvpw'><style id='3uvpw'><dir id='3uvpw'><q id='3uvpw'></q></dir></style></legend>

                    <tbody id='3uvpw'></tbody>
                  本文介绍了在objective-c中带有扫描过滤器的dynamodb scanexpression的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                      AWSDynamoDBObjectMapper *dynamoDBObjectMapper = [AWSDynamoDBObjectMapper defaultDynamoDBObjectMapper];
                      AWSDynamoDBScanExpression *scanExpression = [AWSDynamoDBScanExpression new];
                      scanExpression.exclusiveStartKey = nil;
                      scanExpression.limit = @20;
                      [[[dynamoDBObjectMapper scan:[DDBTableRow class]
                                        expression:scanExpression]
                        continueWithExecutor:[BFExecutor mainThreadExecutor] withSuccessBlock:^id(BFTask *task) { ................
                  

                  我能够扫描并返回从我的 DynamoDB 的特定表中记录的前 20 个,如上面的一段代码所示.

                  I am able to scan through and return the first 20 recorded from a specific table from my DynamoDB as shows on a piece of code above.

                  现在的问题是我想添加一个 scanExpression.scanFilter = 属性,但我还没有找到关于如何构建它的任何好的方向.我在 xcode6

                  The question now is I want to add a scanExpression.scanFilter = property but I haven't find any good direction on how to build that. I am using AWSiOSSDKv2 aws sdk for iOS on xcode6

                  这是我目前所拥有的.还没有完成:

                  here is what I have so far. It is not complete yet:

                      AWSDynamoDBCondition *condition = [AWSDynamoDBCondition new];
                      AWSDynamoDBAttributeValue *attribute = [AWSDynamoDBAttributeValue new];
                      attribute.N = @"400";
                      condition.comparisonOperator = AWSDynamoDBComparisonOperatorEQ;
                  
                      NSDictionary *scanFilter = @{@"lat":
                                                       @{@"AttributeValueList":attribute,
                                                         @"ComparisonOperator":@1}
                                                   };
                      scanExpression.scanFilter = scanFilter;
                  

                  推荐答案

                  可以如下使用:

                  AWSDynamoDBCondition *condition = [AWSDynamoDBCondition new];
                  AWSDynamoDBAttributeValue *attribute = [AWSDynamoDBAttributeValue new];
                  attribute.N = @"400";
                  condition.attributeValueList = @[attribute];
                  condition.comparisonOperator = AWSDynamoDBComparisonOperatorEQ;
                  scanExpression.scanFilter = @{@"lat": condition};
                  

                  这篇关于在objective-c中带有扫描过滤器的dynamodb scanexpression的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:DynamoDB 列表类型 下一篇:为什么安卓模拟器这么慢?我们如何加快Android模拟

                  相关文章

                  最新文章

                  <legend id='7yBss'><style id='7yBss'><dir id='7yBss'><q id='7yBss'></q></dir></style></legend>

                    1. <i id='7yBss'><tr id='7yBss'><dt id='7yBss'><q id='7yBss'><span id='7yBss'><b id='7yBss'><form id='7yBss'><ins id='7yBss'></ins><ul id='7yBss'></ul><sub id='7yBss'></sub></form><legend id='7yBss'></legend><bdo id='7yBss'><pre id='7yBss'><center id='7yBss'></center></pre></bdo></b><th id='7yBss'></th></span></q></dt></tr></i><div id='7yBss'><tfoot id='7yBss'></tfoot><dl id='7yBss'><fieldset id='7yBss'></fieldset></dl></div>

                      <small id='7yBss'></small><noframes id='7yBss'>

                        <bdo id='7yBss'></bdo><ul id='7yBss'></ul>
                      <tfoot id='7yBss'></tfoot>