Google App Engine dispatch.yaml 意外属性 'service'

Google App Engine dispatch.yaml Unexpected attribute 'service'

我在将 dispatch.yaml 文件传输到本地 devapp 服务器上的 运行 时遇到了一些问题。我有两个错误,一个似乎与缩进有关 expecting <block end>, but found ? 我可以通过删除调度文件中的缩进来解决这个问题,如下所示。

第二个问题发生在我删除缩进时我得到 Unexpected attribute 'service' of type DispachInfoExternal 我尝试从 google 文档中复制 example 但我得到了同样的错误,我也有尝试将名称服务更改为模块,因为我认为那是旧名称,但我得到了同样的错误。我正在使用 Atom 作为我的编辑器。

dispatch:
- url: '*/content/*'
service: default

- url: '*/admin/*'
service: admin-services

- url: '*/creator/*'
service: creator-services

- url: '*/social/*'
service: social-services

- url: '*/subs/*'
service: subscription-services

- url: '*/user/*'
service: user-services

您缺少 yaml files 中的缩进。

写法不一样

dispatch:
- url: '*/content/*'
service: default

dispatch:
- url: '*/content/*'
  service: default