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;
}