I\'m newbie at javascript, angularJS and JQuery, but I have just started programming a angularJS app where i use JQuery to get a JSON from a webserver like this:
<
function ListProdcutsCtrl($scope, $http) { var request = {'searchString' : 'apple'}; $http.get('/api/products', request).success(function(response) { $scope.products_table_data = response.products; });