更新时间:2024-11-12 GMT+08:00
python模板
# -*- coding:utf-8 -*- import json def handler (event, context): return { "statusCode": 200, "isBase64Encoded": False, "body": json.dumps(event), "headers": { "Content-Type": "application/json" } }
父主题: Python