如何从Google App Engine中的静态HTML发出PHP请求?

时间:2016-04-12 08:36:49

标签: php google-app-engine

我有2个文件index.htmlserver.php。 app.yaml文件配置如下,以显示index.html页面,并且工作正常,

application: orange-127906
version: 1
runtime: python27
api_version: 1
threadsafe: yes

handlers:
- url: /favicon\.ico
  static_files: favicon.ico
  upload: favicon\.ico

- url: /
  static_dir: static_files

libraries:
- name: webapp2
  version: "2.5.2"

但我在index.html文件中有一些jQuery代码,它使用AJAX调用server.php并显示信息。是否可以在server.php中配置app.yaml以便我可以进行这些AJAX调用?

1 个答案:

答案 0 :(得分:1)

您可以使用脚本标记直接在app.yaml中提供php文件。

例:
sequelize.literal('extract(YEAR_MONTH FROM `User`.`created_on`) AS created_year_month')

我通常使用脚本标记使用php文件提供所有页面,然后使用'include_once'或'require_once'来包含任何html文件。