Ho un codice angularjs esistente che rende HTTP GET. Estratto di seguito è riportato un codice rilevante all'interno del controller.Aggiungere l'autenticazione di base HTTP a questo HTTP GET in angularjs
.controller('imptViewCtrl', ['$scope', '$http',
function ($scope, $http,) {
var url = $configuration.webroot + '/impt/list?list=testlist';
$http.get(url).then(function (response) {
tableData = response.data;
});
}]);
Vorrei aggiungere l'autenticazione di base HTTP a HTTP GET. Il nome utente è foo
e la password è bar
. Come si può fare?
Forse questo potrebbe aiutare: http://stackoverflow.com/questions/18877715/http-auth-headers-in-angularjs? – ssougnez