在我的 php 应用程序中,我有一个 jquery,但它没有运行,其他部分运行良好,而且我确信它在我的主机中运行良好。在我的 html 中是这样的:<script src="jquery.min.js"></script>
所以我猜我的 app.yaml 有问题.
以下是我的 app.yaml:
application: *
version: 1
runtime: php
api_version: 1
handlers:
- url: /(.*\.(htm$|html$|css$|js$))
static_files: photo/\1
upload: photo/(.*\.(htm$|html$|css$|js$))
- url: /jquery.min.js
static_files: photo/\1
upload: photo/jquery.min.js
- url: /index.html
static_files: photo/\1
upload: photo/index.html
- url: /albums/(.*\.(ico$|jpg$|png$|gif$|swf$))
static_files: photo/albums/\1
upload: photo/albums/(.*\.(ico$|jpg$|png$|gif$|swf$))
- url: /(.+)
script: photo/\1
secure: always
- url: /photostack.php
script: photo/photostack.php
secure: always
我是个大人物,所以也许这只是一个小问题。但是我工作了几天,仍然找不到路。请帮助我。这是我的网站:https://nicol06215.appspot.com/index.html
单击该列时它应该显示窗口。