2016-09-18 56 views
-2

我想在已部署到Google雲中的php應用程序中創建ajax請求。我的PHP應用程序的app.yaml文件看起來像如下:在gcloud php應用程序中實現ajax請求

runtime: php55 
api_version: 1 

handlers: 

- url: /css 
    static_dir: css 

- url: /js 
    static_dir: js 

- url: /images 
    static_dir: images 

- url: /.* 
    script: index.php 

- url: /api 
    script: api.php 

我想使Ajax請求與jQuery的,這將是「api.php」處理呼叫「/ API」。但它不起作用。我們如何指定另一個腳本以及index.php。我認爲api.php甚至沒有上傳。我們如何實現Ajax請求?

謝謝

回答

0

你有趕上所有趕在它有機會之前。重新排列順序:

- url: /api 
    script: api.php 

- url: /.*  ## <- this is a catch-all 
    script: index.php 
+0

現在我看到你已經問過這個問題,並且已經正確回答了。 – GAEfan