/date 处的 API 结果给出了 {"message": "Internal server error"} 错误。/hello 成功返回“hello world”。
最终目标是返回今年到目前为止经过的天数。
'''
from chalice import Chalice
from datetime import date
app = Chalice(app_name='days')
app.debug = True
@app.route('/hello')
def index():
return {'hello': 'world'}
@app.route('/date')
def days():
return date.today()
'''