【发布时间】:2015-11-03 23:53:33
【问题描述】:
在本地运行良好,但资源管理器在部署时卡在“正在加载..”中。到目前为止我采取的步骤:
- 清除浏览器缓存
- 检查了日志,我没有错误,我没有看到 “/_ah/spi/BackendService.getApiConfigs 200”请求,所以这是一个 问题,我不知道如何解决。
- 链接:
https://.appspot.com/_ah/spi/BackendService.getApiConfigs
结果: {"state": "APPLICATION_ERROR", "error_message": "Not
找到”}
请指出正确的方向来调试它。在此先感谢
我的 app.yaml 文件
application: appID
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
# Endpoints handler
- url: /_ah/spi.*
script: the_api.APPLICATION
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: /js
static_dir: static/js
- url: /.*
script: the_web_page.app
secure: always
libraries:
- name: webapp2
version: "2.5.2"
- name: endpoints
version: 1.0
- name: jinja2
version: latest
- name: pycrypto
version: latest
【问题讨论】:
标签: google-app-engine google-cloud-endpoints