我想像在mysql LOWER(fieldName)= LIKE%strtolower(search_text)%中一样在属性中搜索文本字符串。我做了一些检查,但没有找到解决办法。
{
"TableName": "DEV_postTbl",
"ProjectionExpression": "postId, postType, postStatus",
"ScanIndexForward": false,
"Limit": 6,
"KeyConditionExpression": "postStatus =:postStatusPublished",
"IndexName": "postStatus-createdOn-index",
"FilterExpression": " ( contains( postTitle, :searchText) OR contains(postDescription, :searchText) OR contains(postLocation.addressLine, :searchText) ) ",
"ExpressionAttributeValues": {
":searchText": "hello",
":postStatusPublished": "published"
}
}
这是我的代码..但是此搜索仅搜索“ hello”而不是“ hello”,“ heLLO”
答案 0 :(得分:0)
DynamoDB区分大小写。如果您的数据不区分大小写,则一种解决方案是将数据存储在DynamoDB中之前将其转换为小写或大写形式。然后,您可以通过查询所有小写字母或所有大写字母来解决此问题。
示例:
将postTitle
存储在小写项目中。
当您仅搜索小写时:searchTex
(str.toLowerCase()),然后查询。