Incrementing Number Property in AWS DynamoDB Objective C(AWS DynamoDB Objective C 中的递增数字属性)
问题描述
我正在努力增加已保存在我的 DynamoDB 表中的项目的数字属性值,我的代码当前是:
I am struggling with incrementing a number property value of an item already saved in my table on DynamoDB my code currently is:
AWSDynamoDBUpdateItemInput *updateItemInput = [AWSDynamoDBUpdateItemInput new];
updateItemInput.tableName = @"Table";
updateItemInput.key= @{
@"KeyPropertyName":@"KeyValue"
};
updateItemInput.updateExpression = @"SET(counter = counter + :val)";
updateItemInput.expressionAttributeValues =@{
@":val":@1
};
AWSDynamoDB *dynamoDB = [AWSDynamoDB defaultDynamoDB];
[[dynamoDB updateItem:updateItemInput]
continueWithBlock:^id(AWSTask *task) {
if (task.error) {
NSLog(@"The request failed. Error: [%@]", task.error);
}
if (task.exception) {
NSLog(@"The request failed. Exception: [%@]", task.exception);
}
if (task.result) {
//Do something with result.
}
return nil;
}];
当我不注释掉 updateExpression 和 expressionAttributeValues 时,我的应用程序总是崩溃.当我创建我的项目类型的空实例时,我可以到达块,当我创建 AWSDynamoDBAttributeValue 的实例以传递密钥时,我会得到奇怪的结果.有什么建议?我是否也错误地编写了我的 updateExpression?
My app always crashes when I do not comment out the updateExpression and expressionAttributeValues. I can reach the block when I create an empty instance of my item type and get strange results when I create an instance of AWSDynamoDBAttributeValue to pass in the key. Any suggestions? Am I also improperly writing my updateExpression?
我还将在另一个对象的数组/列表和字典/映射属性中添加更新和删除项目.这会有什么不同?
I am also going to be adding updating and deleting items in array/list and dictionary/map properties on another object. How would this differ?
推荐答案
有几件事.key
定义如下:
@property (nonatomic, strong) NSDictionary<NSString *, AWSDynamoDBAttributeValue *> * _Nullable key;
您需要将 @"KeyValue"
替换为 AWSDynamoDBAttributeValue
的实例.
You need to replace @"KeyValue"
with an instance of AWSDynamoDBAttributeValue
.
expressionAttributeValues
定义如下:
@property (nonatomic, strong) NSDictionary<NSString *, AWSDynamoDBAttributeValue *> * _Nullable expressionAttributeValues;
您需要将 @1
替换为 AWSDynamoDBAttributeValue
的实例.
You need to replace @1
with an instance of AWSDynamoDBAttributeValue
.
确保使用最新版本的适用于 iOS 的 AWS 开发工具包,以便您可以在头文件中看到泛型注释.它可以帮助您构建正确的请求对象.
Make sure to use the latest version of the AWS SDK for iOS so that you can see the generics annotations in the header file. It helps you construct the proper request object.
这篇关于AWS DynamoDB Objective C 中的递增数字属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:AWS DynamoDB Objective C 中的递增数字属性


基础教程推荐
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01