我有2个文件index.html
和server.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调用?
答案 0 :(得分:1)
您可以使用脚本标记直接在app.yaml中提供php文件。
例:
sequelize.literal('extract(YEAR_MONTH FROM `User`.`created_on`) AS created_year_month')
我通常使用脚本标记使用php文件提供所有页面,然后使用'include_once'或'require_once'来包含任何html文件。