当我尝试使用谷歌应用引擎部署我的应用时,我总是得到这个回应
appcfg.py: error: Error parsing C:\Users\expensivestephen\Desktop\mytinywebdb\app.yaml: mapping values are not allowed here
in "C:\Users\expensivestephen\Desktop\mytinywebdb\app.yaml", line 1, column 21.
我的app.yaml文件就这样了;
application: meyapay: 1
runtime: python
api_version: 1
handlers:
- url: /images
static_dir: images
- url: .*
script: main.py
答案 0 :(得分:1)
应该是:
application: meyapay
version: 1
runtime: python
api_version: 1
handlers:
- url: /images
static_dir: images
- url: .*
script: main.py
答案 1 :(得分:0)
我一直都会遇到这个错误。在我的情况下,它通常是因为我复制粘贴代码,并且标点符号或间距在行的某处被误解释。
解决方案是自己输入完全相同的信息。