我想調用一個函數,該函數通過鏈接從servlet返回一個json對象。AngularJS和Servlet集成
我的HTML鏈接,請撥打FTEST功能:
<td><a href="" ng-controller="minaplantaCtrl" ng-click="fTest(x.id_camion_descarga)">ver</a></td>
我的控制器:
app.controller('minaplantaCtrl', function($scope, $http, $window) {
$scope.fTest = function(idDescarga){
$http.get("http://localhost:8080/BD_INTEGRADA/UnionMinaPlanta?idDescarga="+idDescarga)
.success(function (response) {$scope.descargas = response.descargas;});
$window.alert(JSON.stringify($scope.descargas));
};
});
當我按下首次的鏈接出現在警報 「未定義」
但當我第二次按時,如果我能看到在警報中返回的json對象
當我按下第一個鏈接時可能會發生什麼?請幫助
感謝