我正在使用python 3.6并连接到dynamodb来获取数据。
克服第json.dumps(item, indent=4, cls=DecimalEncoder)
行的错误
任何建议我做错了。
import json
import boto3
import decimal
dynamodb = boto3.resource('dynamodb')
table = dynamodb.Table('MY_TABLE')
class DecimalEncoder(json.JSONEncoder):
def default(self, o):
if isinstance(o, decimal.Decimal):
if o % 1 > 0:
return float(o)
else:
return int(o)
return super(DecimalEncoder, self).default(o)
def lambda_handler(event, context):
# TODO implement
category_id = event["queryStringParameters"]["id"]
response = table.get_item(
Key={
'category': category_id
}
)
item = response['Item']
return {
"isBase64Encoded": False,
"statusCode": '200',
"headers": {},
"body": json.dumps(item, indent=4, cls=DecimalEncoder)
}
答案 0 :(得分:0)
JSON不支持集合,因此您应使json.dumps
的客户解码器能够将集合转换为列表:
class DecimalEncoder(json.JSONEncoder):
def default(self, o):
if isinstance(o, set):
return list(o)
if isinstance(o, decimal.Decimal):
if o % 1 > 0:
return float(o)
else:
return int(o)
return super(DecimalEncoder, self).default(o)