Is it possible to make the date dynamically change in the link?
For example, today is 10/11/2016 and you need to enter the date in the link
like for example here: start=20161011&finish20161011
Well, also identical for the week of the month and year.
var CupApp = angular.module('CupApp', []); CupApp.controller('CupCtrl', function ($scope, $http){ $http.get('http://buff:123@192.168.0.7:8080/pt/hs/buffnew/total?start=20160101&finish=20161231').success(function(data) { $scope.cups = data; }); });