我正在尝试使用 chalice 访问路径参数,但它给了我一个语法错误。
.py 文件
@app.route('/someValue/{indicator}', methods=['GET']
def get_indicator_value(indicator):
给了我下面提到的这个错误:
[ERROR] Runtime.UserCodeSyntaxError: Syntax error in module 'test': invalid syntax (test.py, line 74)
Traceback (most recent call last):
File "/var/task/test.py" Line 74
def some_value(indicator):
我在这里想念什么?