2014-11-24 72 views
0

我試圖將我的angularJS應用程序連接到我創建的Web服務。 Web服務有一個switch語句,根據您傳遞的參數選擇正確的php文件。在這種情況下,我正在尋找通過行動,檢索到Web服務。怎樣才能讓我的$ http.get通過將由我的switch語句讀取參數

呼叫到web服務

function customersController($scope,$http) { 
    $http.get("http://10.137.98.144") 
    .success(function(response) {$scope.names = response;}); 
} 

的WebService

switch ($_POST['action']) 
      { 

      case 'retrieve': 
       require "retrieve.php"; 
       retrieve(); 
       break; 
      } 

回答

0

您可以用URL

傳遞參數

試試這個:

$http.get("http://10.137.98.144?action=retrieve") 

在php中你可以使用參數與

$param = $_GET('action');