我如何在查询运行时将属性与dynamodb表->项目->属性中的小写值进行比较

时间:2018-10-31 05:22:40

标签: node.js amazon-dynamodb

我想像在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”

1 个答案:

答案 0 :(得分:0)

  

DynamoDB区分大小写。如果您的数据不区分大小写,则一种解决方案是将数据存储在DynamoDB中之前将其转换为小写或大写形式。然后,您可以通过查询所有小写字母或所有大写字母来解决此问题。

示例:

postTitle存储在小写项目中。

当您仅搜索小写时:searchTex(str.toLowerCase()),然后查询。